Ejemplo: cómo hacer un guión de Leaderstats
function onPlayerEntered(newPlayer)
wait(.5)
local stats = Instance.new("IntValue")
stats.Name = "leaderstats"
local score = Instance.new("IntValue")
score.Name = "Cash" -- Change "Cash" with Your Leaderstats Name
score.Value = 0
score.Parent = stats
stats.Parent = newPlayer
end
game.Players.ChildAdded:connect(onPlayerEntered)
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)