Advertisement
PresidentIvan

Roblox Doomspire Brickbattle Cheat

Jun 13th, 2019
5,704
0
Never
1
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.30 KB | None | 0 0
  1. --[[
  2. Roblox Doomspire Brickbattle Cheat/Admin. Created by PresidentIvan!
  3.  
  4. Enjoy!
  5. ]]--
  6.  
  7. local player = game.Players.LocalPlayer
  8. local prefix = "/"
  9.  
  10. local msg = Instance.new("Message", player.PlayerGui)
  11. msg.Text = "Prefix is '/'. Type '/cmds' in the chat to view commands! Created by PresidentIvan"
  12. wait(3)
  13. msg:Destroy()
  14.  
  15. player.Chatted:Connect(function(chat)
  16.     if chat == prefix.."tp red" then
  17.         player.Character.HumanoidRootPart.CFrame = CFrame.new(-131, 21.2, 0) + Vector3.new(0, 10, 0)
  18.        
  19.     elseif chat == prefix.."tp yellow" then
  20.         player.Character.HumanoidRootPart.CFrame = CFrame.new(131, 21.2, 0) + Vector3.new(0, 10, 0)
  21.        
  22.     elseif chat == prefix.."tp blue" then
  23.         player.Character.HumanoidRootPart.CFrame = CFrame.new(0, 21.2, 131) + Vector3.new(0, 10, 0)
  24.        
  25.     elseif chat == prefix.."tp green" then
  26.         player.Character.HumanoidRootPart.CFrame = CFrame.new(0, 21.2, -131) + Vector3.new(0, 10, 0)
  27.        
  28.     elseif chat == prefix.."cheat" then
  29.         player.Character.Humanoid.WalkSpeed = 100
  30.         player.Character.Humanoid.JumpPower = 100
  31.         player.Character.HipHeight = 1
  32.        
  33.         workspace.Lobby:Destroy()
  34.        
  35.     elseif chat == prefix.."cmds" then
  36.         local cmdmsg = Instance.new("Message", player.PlayerGui)
  37.         cmdmsg.Text = "tp red, tp yellow, tp blue, tp green, cheat"
  38.        
  39.         wait(3)
  40.         cmdmsg:Destroy()
  41.     end
  42. end)
Advertisement
Comments
Add Comment
Please, Sign In to add comment
Advertisement