Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

Tool Activated function not firing?

Asked by 6 years ago

Okay, so i made this little script to test FE:

local plr = game.Players.LocalPlayer
local tool = script.Parent
local mouse = plr:GetMouse()

tool.Activated:Connect(function()
    print 'Activated'
end)

And for the life of me it will not fire. Nothing happens. I tried turning FE off but no help, what am I doing wrong?

0
print is a function, not a keyword. God damn. DeceptiveCaster 3761 — 6y
0
That is irrelevant, this is just another way of calling it. frriend 0 — 6y

1 answer

Log in to vote
0
Answered by 6 years ago

.Activated will only fire if he tool has a part named “Handle” or you have the requires handle property of the tool set to false.

Ad

Answer this question