Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local player = game.Players.LocalPlayer
- local RoundsAmount = workspace.RoundsLeaderboard.RoundsMiddle2.SurfaceGui.RoundsAmount
- local WinsAmount = workspace.WinsLeaderboard.WinsMiddle2.SurfaceGui.WinsAmount
- player:WaitForChild("Wins").Changed:Connect(function(Value)
- WinsAmount.Text = "Your Wins: "..Value
- end)
- player:WaitForChild("Rounds").Changed:Connect(function(Value)
- RoundsAmount.Text = "Your Wins: "..Value
- end)
- WinsAmount.Text = "Your Wins: "..player.Wins.Value
- RoundsAmount.Text = "Your Rounds: "..player.Rounds.Value
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement