Advertisement
alphabox

redduvs battle royale

Jul 2nd, 2019
294
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.91 KB | None | 0 0
  1. local UIS = game:GetService("UserInputService")
  2. local player = game.Players.LocalPlayer
  3.  
  4. local UI = Instance.new("ScreenGui")
  5. local Hitboxes = Instance.new("TextLabel")
  6. local FastDrop = Instance.new("TextLabel")
  7. local Speed = Instance.new("TextLabel")
  8.  
  9. UI.Name = "ReddevsUI"
  10. UI.Parent = player.PlayerGui
  11. Hitboxes.Name = "Hitboxes"
  12. Hitboxes.Parent = UI
  13. Hitboxes.BackgroundTransparency = 1
  14. Hitboxes.Position = UDim2.new(0, 5, 1, -100)
  15. Hitboxes.Size = UDim2.new(0, 112, 0, 50)
  16. Hitboxes.Text = "[Y] Hitboxes"
  17. Hitboxes.TextColor3 = Color3.fromRGB(255, 255, 255)
  18. Hitboxes.TextStrokeColor3 = Color3.fromRGB(0, 0, 0)
  19. Hitboxes.TextSize = 15
  20. Hitboxes.TextStrokeTransparency = 0
  21. Hitboxes.TextXAlignment = "Left"
  22. FastDrop.Name = "FastDrop"
  23. FastDrop.Parent = UI
  24. FastDrop.BackgroundTransparency = 1
  25. FastDrop.Position = UDim2.new(0, 5, 1, -122)
  26. FastDrop.Size = UDim2.new(0, 112, 0, 50)
  27. FastDrop.Text = "[N] Moon Jump"
  28. FastDrop.TextColor3 = Color3.fromRGB(255, 255, 255)
  29. FastDrop.TextStrokeColor3 = Color3.fromRGB(0, 0, 0)
  30. FastDrop.TextStrokeTransparency = 0
  31. FastDrop.TextSize = 15
  32. FastDrop.TextXAlignment = "Left"
  33. Speed.Name = "Speed"
  34. Speed.Parent = UI
  35. Speed.BackgroundTransparency = 1
  36. Speed.Position = UDim2.new(0, 5, 1, -144)
  37. Speed.Size = UDim2.new(0, 112, 0, 50)
  38. Speed.Text = "[B] Bhop"
  39. Speed.TextColor3 = Color3.fromRGB(255, 255, 255)
  40. Speed.TextStrokeColor3 = Color3.fromRGB(0, 0, 0)
  41. Speed.TextStrokeTransparency = 0
  42. Speed.TextSize = 15
  43. Speed.TextXAlignment = "Left"
  44.  
  45. wait(1)
  46. UIS.InputBegan:Connect(function(input)
  47. if input.KeyCode == Enum.KeyCode.Y then
  48. _G.HeadSize = 30 _G.Disabled = true game:GetService('RunService').RenderStepped:connect(function() if _G.Disabled then for i,v in next, game:GetService('Players'):GetPlayers() do if v.Name ~= game:GetService('Players').LocalPlayer.Name then pcall(function() v.Character.HumanoidRootPart.Size = Vector3.new(_G.HeadSize,_G.HeadSize,_G.HeadSize) v.Character.HumanoidRootPart.Transparency = 0.7 v.Character.HumanoidRootPart.BrickColor = BrickColor.new("Really blue") v.Character.HumanoidRootPart.Material = "Neon" v.Character.HumanoidRootPart.CanCollide = false end) end end end end)
  49. end
  50. end)
  51.  
  52. UIS.InputBegan:Connect(function(input)
  53. if input.KeyCode == Enum.KeyCode.N then
  54. local character = game.Workspace[player.Name]
  55. local force = Instance.new("BodyForce")
  56. force.Parent = character.HumanoidRootPart
  57. force.Name = "MoonJump"
  58. force.Force = Vector3.new(0, 4000, 0)
  59. wait(1)
  60. force:Destroy()
  61. end
  62. end)
  63.  
  64. local character = game.Workspace[player.Name]
  65. local force = Instance.new("BodyForce")
  66. force.Parent = character.HumanoidRootPart
  67. force.Name = "NewSpeed"
  68. local db = false
  69.  
  70. local character = game.Workspace[player.Name]
  71. wait(5)
  72. while wait() do
  73. local lvx = character.Head.CFrame.lookVector.X
  74. local lvz = character.Head.CFrame.lookVector.Z
  75. wait()
  76. character.HumanoidRootPart:FindFirstChild("NewSpeed").Force = Vector3.new(lvx *10000, 100, lvz *10000)
  77. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement