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 7 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
7 years ago

Hello, THEROBLOXAIN2!

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

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

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
7 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