Equipped not working?

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)

also there is no error codes in my console
help

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

2 Likes

Does your tool have a handle? If so maybe thats what is making it not work.

1 Like

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.