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

What are needed for tools?

Asked by
tumadrina 179
9 years ago

I know that a tool needs a handle but is there anything else I need?

script.Parent.Activated:connect(function()
print("qwerty")
end)

nothing happens in the output, I've tried in Local and normal scripts. I'd like to know what I'm missing, thank you in advanced

1 answer

Log in to vote
1
Answered by
RoboFrog 400 Moderation Voter
9 years ago

This will tell you more than anybody else probably could.

EDIT: Use something like this to call upon a function whenever your tool is equipped, just in case the issue is from the activation :

script.Parent.Equipped:connect(OnEquipped)
0
Thank you tumadrina 179 — 9y
Ad

Answer this question