Ok so i am making an Anime game and when the player holds key C he regens his chakra The chakra is in:
1 | game.Players.LocalPlayer.Stats.Chika |
This is the script i want to execute when the players holds C:
1 | while wait() do |
2 | while Chika.Value < 10000 do |
3 | wait( 0.01 ) |
4 | Chika.Value = Chika.Value + 1 |
5 | end |
6 | end |