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

GUI Button Click Working Improperly?

Asked by 6 years ago

Hi, When making a single button that alternates between two options when you click it, a problem arises. The button is supposed to teleport you to one brick, but, when the second-long debounce ends, it teleports you to the other brick, as though you clicked on it again. I'm not sure what's causing this. Any ideas?

01player = game.Players.LocalPlayer
02button = script.Parent
03local debounce = false
04image = script.Parent.Parent.ImageButton.Image
05 
06function helpme()
07 if not debounce then
08    if image == "rbxassetid://2730594257" then
09    debounce = true
10    image = "rbxassetid://2730605530"
11    local LowerTorso = player.Character.LowerTorso
12    LowerTorso.CFrame = game.Workspace.telepart4.CFrame
13    wait(1)
14    debounce = false
15    end
View all 26 lines...
1
It appears that in your function if debounce is false, both if statements will run. Hard to tell on mobile bc your indentations are off GoodCallMrOlsen 70 — 6y

1 answer

Log in to vote
1
Answered by 6 years ago
Edited 6 years ago

I Think it is because you forgot the else, So what I think was happening is that the game was checking the first If statement then it waited 1 second and checked the second one, and it executes both statements each click instead of executing 1 each time you click. (Also I Marked The Place I Added An Else)

Try This:

01player = game.Players.LocalPlayer
02button = script.Parent
03local debounce = false
04image = script.Parent.Parent.ImageButton.Image
05 
06function helpme()
07 if not debounce then
08    if image == "rbxassetid://2730594257" then
09    debounce = true
10    image = "rbxassetid://2730605530"
11    local LowerTorso = player.Character.LowerTorso
12    LowerTorso.CFrame = game.Workspace.telepart4.CFrame
13    wait(1)
14    debounce = false
15else if image == "rbxassetid://2730605530" then ------------------------------------------- I added an else here so then you need to click a second time to check what image it is
View all 25 lines...

(I Havent Tested It So Sorry If It Doesn't Work)

0
that wont matter bc the images are clearly different. it cant be both!! Gey4Jesus69 2705 — 6y
1
After adding the "not debounce" to each if, and changing it to an if else, it worked! Thank you. SuperJumpman12 43 — 6y
0
:) kizi3000 88 — 6y
Ad

Answer this question