Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --made by ninov193
- local function onJoin(player)
- local leaderstats = Instance.new("Folder")
- leaderstats.Name = "leaderstats"
- leaderstats.Parent = player
- local Rank = Instance.new("StringValue")
- Rank.Parent = leaderstats
- Rank.Name = "Rank"
- --set the next line to the default rank
- Rank.Value = "Visitor"
- ------------------------------------------------------------
- if player.Name == "your name" then
- Rank.Value = "rank name"
- end
- if player.Name == "other person" then
- Rank.Value = "rank name"
- end
- if player.Name == "other person" then
- Rank.Value = "rank name"
- end
- if player.Name == "other person" then
- Rank.Value = "rank name"
- end
- end
- game.Players.PlayerAdded:Connect(onJoin)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement