RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"make me an admin only command to reset peoples cash back to 0, using the "Cash" leaderstat"
-- server script local adminUsernames = {"YourUsername"} -- Add more admin usernames inside the table if needed local function isAdmin(player) for _, admin in ipairs(adminUsernames) do if player.Name == admin then return true end end return false end local function onChat(player, message) if isAdmin(player) and string.lower(message) == "!resetcash" then for _, otherPlayer in ipairs(game.Players:GetPlayers()) do otherPlayer.leaderstats.Cash.Value = 0 end end end game.Players.PlayerAdded:Connect(function(player) player.Chatted:Connect(function(message) onChat(player, message) end) end)