Advertisement
Xen_YT

RB World 2 Aimbot Script

Apr 23rd, 2020
6,957
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.19 KB | None | 0 0
  1. -- Gui to Lua
  2. -- Version: 3.2
  3.  
  4. -- Instances:
  5.  
  6. local ScreenGui = Instance.new("ScreenGui")
  7. local OpenFrame = Instance.new("Frame")
  8. local Open = Instance.new("TextButton")
  9. local Main = Instance.new("Frame")
  10. local StatChange = Instance.new("TextButton")
  11. local DropBall = Instance.new("TextButton")
  12. local Label = Instance.new("TextLabel")
  13.  
  14. --Properties:
  15.  
  16. ScreenGui.Parent = game.CoreGui
  17. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  18.  
  19. OpenFrame.Name = "OpenFrame"
  20. OpenFrame.Parent = ScreenGui
  21. OpenFrame.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  22. OpenFrame.Position = UDim2.new(0, 0, 0.617052019, 0)
  23. OpenFrame.Size = UDim2.new(0, 100, 0, 32)
  24.  
  25. Open.Name = "Open"
  26. Open.Parent = OpenFrame
  27. Open.BackgroundColor3 = Color3.fromRGB(60, 60, 60)
  28. Open.Size = UDim2.new(0, 100, 0, 32)
  29. Open.Font = Enum.Font.SourceSans
  30. Open.Text = "Open"
  31. Open.TextColor3 = Color3.fromRGB(255, 255, 255)
  32. Open.TextSize = 28.000
  33. Open.MouseButton1Down:connect(function()
  34. Main.Visible = true
  35. OpenFrame.Visible = false
  36. end)
  37.  
  38. Main.Name = "Main"
  39. Main.Parent = ScreenGui
  40. Main.BackgroundColor3 = Color3.fromRGB(46, 46, 46)
  41. Main.BorderColor3 = Color3.fromRGB(27, 42, 53)
  42. Main.Position = UDim2.new(0.101307191, 0, 0.106936418, 0)
  43. Main.Size = UDim2.new(0, 232, 0, 239)
  44. Main.Visible = false
  45. Main.Draggable = true
  46.  
  47. StatChange.Name = "Stat Change"
  48. StatChange.Parent = Main
  49. StatChange.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  50. StatChange.Position = UDim2.new(0.178999037, 0, 0.330543965, 0)
  51. StatChange.Size = UDim2.new(0, 147, 0, 50)
  52. StatChange.Font = Enum.Font.SourceSans
  53. StatChange.Text = "Stat Change"
  54. StatChange.TextColor3 = Color3.fromRGB(0, 0, 0)
  55. StatChange.TextSize = 14.000
  56. StatChange.MouseButton1Down:connect(function()
  57. for i,v in pairs(getgc(true)) do
  58. if type(v) == "table" and rawget(v, "handles") then
  59. v.freethrow = math.huge;
  60. v.postscorer = math.huge;
  61. v.ballspeed = 99;
  62. v.jump = 100;
  63. v.steal = math.huge;
  64. v.shotcontest = math.huge;
  65. v["2pointer"] = math.huge
  66. v["3pointer"] = math.huge;
  67. v.passing = math.huge;
  68. v.layup = 96;
  69. v.strength = math.huge;
  70. v.dunk = 96;
  71. v.speed = 98;
  72. v.handles = math.huge;
  73. v.movingshot = math.huge;
  74. v.defense = math.huge;
  75. v.stamina = math.huge;
  76. end
  77. end
  78. end)
  79.  
  80. DropBall.Name = "Drop Ball"
  81. DropBall.Parent = Main
  82. DropBall.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  83. DropBall.Position = UDim2.new(0.178999007, 0, 0.615062714, 0)
  84. DropBall.Size = UDim2.new(0, 147, 0, 50)
  85. DropBall.Font = Enum.Font.SourceSans
  86. DropBall.Text = "Drop Ball"
  87. DropBall.TextColor3 = Color3.fromRGB(0, 0, 0)
  88. DropBall.TextSize = 14.000
  89. DropBall.MouseButton1Down:connect(function()
  90. local descendants = game.workspace:GetDescendants()
  91.  
  92. for index, descendants in pairs(descendants) do
  93. if descendants .Name == "Basketball" then
  94. descendants.block:FireServer()
  95. end
  96. end
  97.  
  98. end)
  99.  
  100. Label.Name = "Label"
  101. Label.Parent = Main
  102. Label.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  103. Label.Size = UDim2.new(0, 232, 0, 50)
  104. Label.Font = Enum.Font.SourceSans
  105. Label.Text = "Spixxy#6147"
  106. Label.TextColor3 = Color3.fromRGB(0, 0, 0)
  107. Label.TextSize = 14.000
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement