Why is my Equipped event not working?
so im trying to do that when my tool is equipped i run an RemoteEvent, my script is in a localscript so here is the script:
local plr = game.Players.LocalPlayer
local t = script.Parent
t.Equipped:Connect(function()
game.ReplicatedStorage.RedRev:FireServer(plr) --the "plr" is just for passing the player variable
print("RRV") --Just test print
end)
does the tool have a handle? if not set the RequiresHandle property on the tool to false, also you dont need to pass the player in the remote because firing remotes from the client always pass the localplayer as the first argument