the local script
01 | local Player = game.Players.LocalPlayer |
02 | local mouse = Player:GetMouse() |
03 | local T = script.Parent |
04 | local handle = T:WaitForChild( 'Handle' ) |
05 | local debounce = false |
06 | local RemoteEvent = script.Parent.RemoteEvent |
07 | T.Activated:Connect( function () |
08 | local H = T.Parent:FindFirstChildWhichIsA( "Humanoid" ) |
09 | if H and debounce ~ = false then |
10 | debounce = true |
11 | local position = mouse.Hit.Position |
12 | T.RemoteEvent:FireServer(position) |
13 | wait( 2 ) |
14 | debounce = false |
15 | end |
16 | end ) |
idk whats wrong so please help.
The problem is at line 9. You're checking for the 'debounce' to be true when it's currently set at false. Consider changing the 'debounce' to true. (or debounce == false)