Advertisement
Guest User

Pasta

a guest
Aug 19th, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. local RBWorld2 = Instance.new("ScreenGui")
  2. local OpenFrame = Instance.new("Frame")
  3. local Open = Instance.new("TextButton")
  4. local Main = Instance.new("Frame")
  5. local Title = Instance.new("TextBox")
  6. local Credits = Instance.new("TextBox")
  7. local close = Instance.new("TextButton")
  8. local aimbot = Instance.new("TextButton")
  9. local speedhax = Instance.new("TextButton")
  10. --Properties:
  11. RBWorld2.Name = "RB World 2"
  12. RBWorld2.Parent = game.CoreGui
  13.  
  14. OpenFrame.Name = "Open Frame"
  15. OpenFrame.Parent = RBWorld2
  16. OpenFrame.BackgroundColor3 = Color3.new(1, 1, 1)
  17. OpenFrame.Position = UDim2.new(0, 0, 0.486994207, 0)
  18. OpenFrame.Size = UDim2.new(0, 119, 0, 41)
  19. OpenFrame.Style = Enum.FrameStyle.DropShadow
  20.  
  21. Open.Name = "Open"
  22. Open.Parent = OpenFrame
  23. Open.BackgroundColor3 = Color3.new(0, 0, 0)
  24. Open.BackgroundTransparency = 0.89999997615814
  25. Open.Position = UDim2.new(0.0336134471, 0, 0.097560972, 0)
  26. Open.Size = UDim2.new(0, 97, 0, 24)
  27. Open.Font = Enum.Font.Cartoon
  28. Open.Text = "Open"
  29. Open.TextColor3 = Color3.new(1, 1, 1)
  30. Open.TextSize = 16
  31. Open.MouseButton1Down:connect(function()
  32. Main.Visible = true
  33. OpenFrame.Visible = false
  34. end)
  35.  
  36. Main.Name = "Main"
  37. Main.Parent = RBWorld2
  38. Main.BackgroundColor3 = Color3.new(1, 1, 1)
  39. Main.Position = UDim2.new(0.230909079, 0, 0.38264057, 0)
  40. Main.Size = UDim2.new(0, 232, 0, 274)
  41. Main.Visible = false
  42. Main.Style = Enum.FrameStyle.DropShadow
  43. Main.Active = true
  44. Main.Draggable = true
  45.  
  46. Title.Name = "Title"
  47. Title.Parent = Main
  48. Title.BackgroundColor3 = Color3.new(1, 1, 1)
  49. Title.Position = UDim2.new(-0.00862068962, 0, -0.00364963524, 0)
  50. Title.Size = UDim2.new(0, 219, 0, 25)
  51. Title.Font = Enum.Font.Cartoon
  52. Title.Text = "RB World 2 GUI"
  53. Title.TextColor3 = Color3.new(0, 0, 0)
  54. Title.TextSize = 14
  55.  
  56. Credits.Name = "Credits"
  57. Credits.Parent = Main
  58. Credits.BackgroundColor3 = Color3.new(1, 1, 1)
  59. Credits.Position = UDim2.new(-0.00862068962, 0, 0.908759117, 0)
  60. Credits.Size = UDim2.new(0, 219, 0, 25)
  61. Credits.Font = Enum.Font.Cartoon
  62. Credits.Text = "Created by Cyamic"
  63. Credits.TextColor3 = Color3.new(0, 0, 0)
  64. Credits.TextSize = 14
  65.  
  66. close.Name = "close"
  67. close.Parent = Credits
  68. close.BackgroundColor3 = Color3.new(1, 1, 1)
  69. close.Position = UDim2.new(0.886932373, 0, -9.40880203, 0)
  70. close.Size = UDim2.new(0, 26, 0, 25)
  71. close.Font = Enum.Font.SourceSans
  72. close.Text = "X"
  73. close.TextColor3 = Color3.new(0, 0, 0)
  74. close.TextSize = 14
  75. close.MouseButton1Down:connect(function()
  76. OpenFrame.Visible = true
  77. Main.Visible = false
  78. end)
  79.  
  80. aimbot.Name = "aimbot"
  81. aimbot.Parent = Main
  82. aimbot.BackgroundColor3 = Color3.new(1, 1, 1)
  83. aimbot.Position = UDim2.new(0.122675017, 0, 0.251664221, 0)
  84. aimbot.Size = UDim2.new(0, 166, 0, 50)
  85. aimbot.Font = Enum.Font.SourceSans
  86. aimbot.Text = "Aimbot (Automatically On)"
  87. aimbot.TextColor3 = Color3.new(0, 0, 0)
  88. aimbot.TextSize = 14
  89. aimbot.MouseButton1Down:connect(function()
  90. -- Alrighty, so this is a script that A1 and I (Atlantic) created, this has 2 features. It features an unpatched aimbot script with a no contest script.
  91. -- To toggle aimbot on/off, press "Q"
  92. -- To toggle no contest on/off, press "Y"
  93.  
  94. --[[
  95.    --> Execute this in your gym.
  96.    --> Execute this on any court in a server and you're set
  97.  
  98.   --> Change _G.Min, _G.Max to change what the aimbot
  99.       -- randomizes between
  100.      
  101.   --> Press Q to turn off aimbot. If you leave it as it is...
  102.   -- it isn't noticable. Just note that it will say great
  103.        -- accuracy when u shoot and its on.
  104.  --> Press Y to turn off no contest
  105. ]]--
  106.  
  107.  
  108. local Run = game:GetService('RunService');
  109. local UIS = game:GetService('UserInputService');
  110. local Players = game:GetService('Players');
  111. local Player = Players['LocalPlayer'];
  112. local Mouse = Player:GetMouse()
  113.  
  114. local Event = Instance.new('RemoteEvent')
  115. local FireServer = Event.FireServer
  116. local GetRange = Random.new()
  117. _G.Max, _G.Min = 99, 99;
  118. local Aim = true
  119. local Contest = true
  120.  
  121. local mt = getrawmetatable(game);
  122. local midx = mt.__index;
  123. local ncll = mt.__namecall;
  124. local fuck = (setreadonly or make_writeable)
  125. fuck(mt, false)
  126.  
  127. rawset(mt, '__namecall', function(obj, ...)
  128. local Args = {...};
  129. local Method = tostring(table.remove(Args));
  130. local Func = midx(obj, Method)
  131.  
  132. if (Method == 'Kick') then
  133. debug.setupvalue(2, 'ScriptDebounce', true)
  134. return
  135. elseif (Func == FireServer) then
  136. if (tostring(obj) == 'shoot') and Aim then
  137. return FireServer(obj, Args[1], GetRange:NextInteger(_G.Min, _G.Max) or 100, true)
  138.      elseif (tostring(obj) == 'Big') and (Method == 'Value') and Contest then
  139.        debug.setupvalue(2, 'contest', 0)
  140. end
  141. end
  142. return ncll(obj, ...)
  143. end)
  144.  
  145. UIS['InputBegan']:Connect(function(input, proc)
  146. if proc then return end
  147. if input.KeyCode == Enum.KeyCode.Q then
  148.   Aim = not Aim
  149. elseif input.KeyCode == Enum.KeyCode.Y then
  150.   Contest = not Contest
  151. end
  152. end)
  153.  
  154.   -- Made by A1_exe and Atlantic --
  155.  
  156. end)
  157.  
  158. speedhax.Name = "speed hax"
  159. speedhax.Parent = aimbot
  160. speedhax.BackgroundColor3 = Color3.new(1, 1, 1)
  161. speedhax.Position = UDim2.new(0.00156989694, 0, 1.66968215, 0)
  162. speedhax.Size = UDim2.new(0, 166, 0, 50)
  163. speedhax.Font = Enum.Font.SourceSans
  164. speedhax.Text = "Speed Hax (Hold G)"
  165. speedhax.TextColor3 = Color3.new(0, 0, 0)
  166. speedhax.TextSize = 14
  167. speedhax.MouseButton1Down:connect(function()
  168.  
  169. velocity = Instance.new("BodyVelocity")
  170. velocity.maxForce = Vector3.new(100000, 0, 100000)
  171. ---vv Use that to change the speed v
  172. local speed = 59
  173. gyro = Instance.new("BodyGyro")
  174. gyro.maxTorque = Vector3.new(100000, 0, 100000)
  175.  
  176. local hum = game.Players.LocalPlayer.Character.Humanoid
  177.  
  178. function onButton1Down(mouse)
  179. down = true
  180. velocity.Parent = game.Players.LocalPlayer.Character.UpperTorso
  181. velocity.velocity = (hum.MoveDirection) * speed
  182. gyro.Parent = game.Players.LocalPlayer.Character.UpperTorso
  183. while down do
  184. if not down then break end
  185. velocity.velocity = (hum.MoveDirection) * speed
  186. local refpos = gyro.Parent.Position + (gyro.Parent.Position - workspace.CurrentCamera.CoordinateFrame.p).unit * 5
  187. gyro.cframe = CFrame.new(gyro.Parent.Position, Vector3.new(refpos.x, gyro.Parent.Position.y, refpos.z))
  188. wait(0.1)
  189. end
  190. end
  191.  
  192. function onButton1Up(mouse)
  193. velocity.Parent = nil
  194. gyro.Parent = nil
  195. down = false
  196. end
  197. --To Change the key in those 2 lines, replace the "g" with your desired key
  198. function onSelected(mouse)
  199. mouse.KeyDown:connect(function(k) if k:lower()=="g"then onButton1Down(mouse)end end)
  200. mouse.KeyUp:connect(function(k) if k:lower()=="g"then onButton1Up(mouse)end end)
  201. end
  202.  
  203. onSelected(game.Players.LocalPlayer:GetMouse())
  204. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement