Advertisement
Sungmingamerpro13

PlayerAmount(STORY GAME) Fakeronan2 and FiredRBLXMan

Sep 26th, 2022
142
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. local player = game.Players.LocalPlayer
  2. local RoundsAmount = workspace.RoundsLeaderboard.RoundsMiddle2.SurfaceGui.RoundsAmount
  3. local WinsAmount = workspace.WinsLeaderboard.WinsMiddle2.SurfaceGui.WinsAmount
  4.  
  5. player:WaitForChild("Wins").Changed:Connect(function(Value)
  6. WinsAmount.Text = "Your Wins: "..Value
  7. end)
  8.  
  9. player:WaitForChild("Rounds").Changed:Connect(function(Value)
  10. RoundsAmount.Text = "Your Wins: "..Value
  11. end)
  12.  
  13. WinsAmount.Text = "Your Wins: "..player.Wins.Value
  14.  
  15. RoundsAmount.Text = "Your Rounds: "..player.Rounds.Value
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement