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

Why does my local script not fireserver ?

Asked by 4 years ago

the local script

01local Player = game.Players.LocalPlayer
02local mouse = Player:GetMouse()
03local T = script.Parent
04local handle = T:WaitForChild('Handle')
05local debounce = false
06local RemoteEvent = script.Parent.RemoteEvent
07T.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
16end)

idk whats wrong so please help.

1 answer

Log in to vote
0
Answered by 4 years ago
Edited 4 years ago

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)

Ad

Answer this question