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:
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!
Just create the INT Value directly on the player!
(Set the INT Value parent to player and done!)
Good luck with your games