Okay I want to use a function to fire off this while loop
1 | while true do |
2 | stats.Score.Value = stats.Score.Value + 1 |
3 | local str = stats.Score.Value |
4 | local str 1 = "Your income: " |
5 | player.PlayerGui.ScreenGui.Frame.TextButton.Text = str 1.. str |
6 | wait( 1 ) |
7 | end |
I fixed the script and this works
01 | function 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 str 1 = "Your income: " |
06 | game.Players.LocalPlayer.PlayerGui.ScreenGui.Frame.TextButton.Text = str 1.. str |
07 | wait( 1 ) |
08 | end |
09 | end |
10 |
11 | script.Parent.MouseButton 1 Click:connect(onClick) |
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.
01 | function onClick() |
02 | while true do |
03 | stats.Score.Value = stats.Score.Value + 1 |
04 | local str = stats.Score.Value |
05 | local str 1 = "Your income: " |
06 | player.PlayerGui.ScreenGui.Frame.TextButton.Text = str 1.. str |
07 | wait( 1 ) |
08 | end |
09 | end |
10 |
11 | script.Parent.MouseButton 1 Down:connect(onClick) |