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

IntValue in player without leaderboard?

Asked by 6 years ago

I know this is not a request site but how do I put a bool value in a player without it showing on leaderstats?

2 answers

Log in to vote
1
Answered by
cailir 284 Moderation Voter
6 years ago

Hello, THEROBLOXAIN2!

we can make a simple script to create the intValue directly in the player:

game.Players.PlayerAdded:Connect(function (player)
    local int = Instance.new("IntValue")
    int.Name = "A creative name!" -- "A creative name!" to the IntValue name
    int.Parent = player
end)

This is a very simple script...

Good luck with your games!

Ad
Log in to vote
0
Answered by
Leamir 3138 Moderation Voter Community Moderator
6 years ago

Just create the INT Value directly on the player!

(Set the INT Value parent to player and done!)

Good luck with your games

Answer this question