RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"make chat tags that congratulate players once they have reached certain stage stats"
-- server script game.Players.PlayerAdded:Connect(function(player) player.leaderstats.Stage.Changed:Connect(function(value) if value > 10 then game.Chat:Chat(player.Name.." has reached stage 10! Congratulations!") end end) end)