RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"when i say !shazam i die"
-- local script local player = game.Players.LocalPlayer local chat = game:GetService("Chat") chat.OnMessage:Connect(function(message, playerName) if message == "!shazam" and playerName == player.Name then player.Character:BreakJoints() end end)