I know this is not a request site but how do I put a bool value in a player without it showing on leaderstats?
Hello, THEROBLOXAIN2!
we can make a simple script to create the intValue directly in the player:
1 | game.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 |
5 | end ) |
This is a very simple script...
Good luck with your games!
Just create the INT Value directly on the player!
(Set the INT Value parent to player and done!)
Good luck with your games