Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --[[
- Roblox Doomspire Brickbattle Cheat/Admin. Created by PresidentIvan!
- Enjoy!
- ]]--
- local player = game.Players.LocalPlayer
- local prefix = "/"
- local msg = Instance.new("Message", player.PlayerGui)
- msg.Text = "Prefix is '/'. Type '/cmds' in the chat to view commands! Created by PresidentIvan"
- wait(3)
- msg:Destroy()
- player.Chatted:Connect(function(chat)
- if chat == prefix.."tp red" then
- player.Character.HumanoidRootPart.CFrame = CFrame.new(-131, 21.2, 0) + Vector3.new(0, 10, 0)
- elseif chat == prefix.."tp yellow" then
- player.Character.HumanoidRootPart.CFrame = CFrame.new(131, 21.2, 0) + Vector3.new(0, 10, 0)
- elseif chat == prefix.."tp blue" then
- player.Character.HumanoidRootPart.CFrame = CFrame.new(0, 21.2, 131) + Vector3.new(0, 10, 0)
- elseif chat == prefix.."tp green" then
- player.Character.HumanoidRootPart.CFrame = CFrame.new(0, 21.2, -131) + Vector3.new(0, 10, 0)
- elseif chat == prefix.."cheat" then
- player.Character.Humanoid.WalkSpeed = 100
- player.Character.Humanoid.JumpPower = 100
- player.Character.HipHeight = 1
- workspace.Lobby:Destroy()
- elseif chat == prefix.."cmds" then
- local cmdmsg = Instance.new("Message", player.PlayerGui)
- cmdmsg.Text = "tp red, tp yellow, tp blue, tp green, cheat"
- wait(3)
- cmdmsg:Destroy()
- end
- end)
Advertisement
Advertisement