So, I was wondering, how could I make this script wait until it's done running for me to be able to click again?
01 | function 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() |
This can be easily accomplished using debounce
.
Let's add debounce to your script;
01 | debounce = false --Declare what debounce is |
02 |
03 | function 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 |
Hope this helps!! If something is wrong, please comment and I will help you further!
ummm, i'm not a script expert but, Debounce really helps a lot
01 | local variablesYouGot |
02 |
03 | debounce = false |
04 |
05 | local function Function() |
06 | if debounce = = false then |
07 |
08 | debounce = true |
09 |
10 | --stuff you need to do |
11 |
12 | debounce = false |
13 | end |
14 | end |
15 |
16 | StuffEvents:connect(Function) |
done, hope this helps ;)