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

Wait after click?

Asked by
k1nq 30
8 years ago

So, I was wondering, how could I make this script wait until it's done running for me to be able to click again?

01function onClicked(player) 
02    local item = game.ServerStorage.Items.Logs:Clone()
03    local gui = player.PlayerGui.ScreenGui.MainGui.Guis.Backpack
04    local Number = script.Number.Value
05    local Run = script.Value.Value
06    Run = true
07    while Run == true do
08        if gui["B"..Number].Used.Value == false then
09            item.Parent = gui["B"..Number]
10            gui["B"..Number].Used.Value = true
11            gui["B"..Number].Image = item.ItemPic.Value
12            gui["B"..Number].Script.Disabled = false
13            Number = 1
14            Run = false
15            script.Parent.Model.Root:Destroy()
View all 27 lines...

2 answers

Log in to vote
2
Answered by 8 years ago

This can be easily accomplished using debounce.

Let's add debounce to your script;

01debounce = false --Declare what debounce is
02 
03function onClicked(player) 
04    if debounce == true then return end --if debounce is on, then it will halt, if not then continue
05    debounce = true --Now debounce is true
06    local item = game.ServerStorage.Items.Logs:Clone()
07    local gui = player.PlayerGui.ScreenGui.MainGui.Guis.Backpack
08    local Number = script.Number.Value
09    local Run = script.Value.Value
10    Run = true
11    while Run == true do
12        if gui["B"..Number].Used.Value == false then
13            item.Parent = gui["B"..Number]
14            gui["B"..Number].Used.Value = true
15            gui["B"..Number].Image = item.ItemPic.Value
View all 32 lines...

Hope this helps!! If something is wrong, please comment and I will help you further!

Ad
Log in to vote
0
Answered by 8 years ago

ummm, i'm not a script expert but, Debounce really helps a lot

01local variablesYouGot
02 
03debounce = false
04 
05local function Function()
06    if debounce == false then
07 
08        debounce = true
09 
10        --stuff you need to do
11 
12        debounce = false
13    end
14end
15 
16StuffEvents:connect(Function)

done, hope this helps ;)

Answer this question