You can write your topic however you want, but you need to answer these questions:
-
What do you want to achieve? I want my script to play the petition sound every time I click it and a cooldown of 7 seconds
-
What is the issue? I’ve tried switching around the wait(7) to the different parts of the script but still doesn’t work, also I don’t know how to script so that’s another problem
-
What solutions have you tried so far? Did you look for solutions on the Developer Hub?
After that, you should include more details if you have any. Try to make your topic as descriptive as possible, so that it’s easier for people to help you!
local Tool = script.Parent
Tool.Activated:Connect(function()
Tool.Handle.PetitionNow:Play()
wait(7)
end)
Please help!