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

i cant see the error in this can anyone else? [closed]

Asked by 5 years ago
Edited by User#5423 5 years ago
local Debounce = false
script.Parent.Activated:Connect(function()
    if Debounce == false then
        Debounce = true
        game.ReplicatedStorage.KIMoves.Kamehameha.Start:FireServer()

    end
end)

script.Parent.Deactivated:Connect(function()
    if Debounce == true then
        game.ReplicatedStorage.KIMoves.Kamehameha.End:FireServer()
        wait(2)
        Debounce = false
    end
end)
0
me neither ee0w 458 — 5y
0
fix lua brackets DinozCreates 1070 — 5y
0
Edit:- code block User#5423 17 — 5y
0
what exactly is it doing now? DinozCreates 1070 — 5y
View all comments (3 more)
0
There looks to be no error in this script, can I get an error code? stef0206 125 — 5y
1
We would appreciate it if you posted some sort of explanation or context. Is the script erroring? If so, what is the error? Is it just not working? If so, please provide the intended functionality. We can't read your mind. We're not geniuses. User#25115 0 — 5y
0
Also, you've not shown us the event listener on the server. What is the function being called OnServerEvent? User#25115 0 — 5y

Closed as Non-Descriptive by clc02, User#24403, and Gey4Jesus69

This question has been closed because its title or content does not adequately describe the problem you are trying to solve.
Please ensure that your question pertains to your actual problem, rather than your attempted solution. That is, you were trying to solve problem X, and you thought solution Y would work, but instead of asking about X when you ran into trouble, you asked about Y.

Why was this question closed?