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

How would I use a function to start a while loop?

Asked by
NecoBoss 194
11 years ago

Okay I want to use a function to fire off this while loop

1while true do
2    stats.Score.Value = stats.Score.Value + 1
3    local str = stats.Score.Value
4    local str1 = "Your income: "
5    player.PlayerGui.ScreenGui.Frame.TextButton.Text = str1..str
6    wait(1)
7end

2 answers

Log in to vote
0
Answered by
NecoBoss 194
11 years ago

I fixed the script and this works

01function onClick()
02    while true do
03        game.Players.LocalPlayer.leaderstats.Score.Value = game.Players.LocalPlayer.leaderstats.Score.Value + 1
04        local str =  game.Players.LocalPlayer.leaderstats.Score.Value
05        local str1 = "Your income: "
06        game.Players.LocalPlayer.PlayerGui.ScreenGui.Frame.TextButton.Text = str1..str
07        wait(1)
08    end
09end
10 
11script.Parent.MouseButton1Click:connect(onClick)
Ad
Log in to vote
-1
Answered by
Perci1 4988 Trusted Moderation Voter Community Moderator
11 years ago

Oh, then you need an event. I prefer anonymous functions when I do events, but you can do it with a normal function just as easily. I will do a normal function here, since that's what you asked.

01function onClick()
02    while true do
03        stats.Score.Value = stats.Score.Value + 1
04        local str = stats.Score.Value
05        local str1 = "Your income: "
06        player.PlayerGui.ScreenGui.Frame.TextButton.Text = str1..str
07        wait(1)
08    end
09end
10 
11script.Parent.MouseButton1Down:connect(onClick)
0
Well, I am trying to make it to where when I click a TextButton it starts a while loop. NecoBoss 194 — 11y
0
I edited it, read it now. Perci1 4988 — 11y

Answer this question