Advertisement
Hasli4

RBLX. ScoreChanger

May 15th, 2025
348
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.39 KB | None | 0 0
  1.  
  2. local increment = 0
  3. local player = game.Players.LocalPlayer
  4. while true do
  5.     increment += 0.01
  6.     if increment > 1 then
  7.         increment = 0
  8.     end
  9.     local color = Color3.fromHSV(increment, 1, 1)
  10.     script.Parent.TextColor3 = color
  11.     local score = player.leaderstats:WaitForChild("Score")
  12.     local loose = player.leaderstats:WaitForChild("Loose")
  13.     script.Parent.Text = score.Value
  14.     wait(0.1)
  15. end
  16.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement