1
I’m trying to remake a power game on Roblox, I’m using an old Uncopylocked place as a base, and everything there is non-fe.
I wanted to use only one remote event for several codes (since they are all very similar), but I have no idea how to do that. This is an example script, it’s inside a button.
local player = game.Players.LocalPlayer
local Open = false
function MouseClick()
if Open == false then
Open = true
script.Parent.Text = "Learned"
script.Parent:FindFirstChild("Flame Armor"):clone().Parent = player.Backpack -- Essa é a parte que eu usaria o remote
end
end
script.Parent.MouseButton1Down:connect(MouseClick)
Could someone tell me what to send in the remote and what to put in the server-side script?