Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

How to make player R.A.P leaderstats?

Asked by 6 years ago

hello i want to know how to add leaderstats that calculates player R.A.P.

Can you tell me way plz?

0
Care to explain what R.A.P is? Can you show us some examples of you trying to make this? http://wiki.roblox.com/index.php?title=Leaderboard User#18718 0 — 6y

1 answer

Log in to vote
0
Answered by 6 years ago
Edited 6 years ago

Here is an example of putting leaderstats in a player

game.Players.PlayerAdded:connect(function(plr) -- When the player joined add the leaderstats.
leaderstats = Instance.new("Folder",plr) -- Make the folder of leaderstats and parent it to the player.
RAP = Instance.new("IntValue",leaderstats) -- Make the RAP and parent it to the leaderstats
end)
Ad

Answer this question