local Players = game:GetService("Players")
-- Allowed usernames
local allowed = {
["okani4"] = true,
["IJustDevRBLX"] = true,
}
Players.PlayerAdded:Connect(function(player)
player.Chatted:Connect(function(msg)
if not allowed[player.Name] then return end
local args = msg:split(" ")
if args[1]:lower() == "/givecash" and args[2] and args[3] then
local targetName = args[2]
local amount = tonumber(args[3])
if not amount then return end
local targetPlayer = Players:FindFirstChild(targetName)
if targetPlayer then
local cash = targetPlayer:FindFirstChild("leaderstats") and targetPlayer.leaderstats:FindFirstChild("Cash")
if cash then
cash.Value = cash.Value + amount
end
end
end
end)
end)
** You are now Level 1! **