Advertisement
wick1214

sdaaawdwa

Apr 21st, 2019
148
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 7.77 KB | None | 0 0
  1. local ScreenGui = Instance.new("ScreenGui")
  2. local OpenFrame = Instance.new("Frame")
  3. local Open = Instance.new("TextButton")
  4. local MainFrame = Instance.new("Frame")
  5. local Title = Instance.new("TextLabel")
  6. local Credits = Instance.new("TextLabel")
  7. local DropBall = Instance.new("TextButton")
  8. local StatChange = Instance.new("TextButton")
  9. local FixGlitch = Instance.new("TextButton")
  10. local GreenOnly = Instance.new("TextButton")
  11. local Admin = Instance.new("TextButton") -- done
  12. local Close = Instance.new("TextButton")
  13. local Fling = Instance.new("TextButton")
  14. local ClickTP = Instance.new("TextButton")
  15. local Reset = Instance.new("TextButton")
  16. local NextPage = Instance.new("TextButton")
  17. local BackPage = Instance.new("TextButton")
  18. local ComingSoon = Instance.new("TextLabel")
  19.  
  20. --Properties:
  21. ScreenGui.Parent = game.CoreGui
  22.  
  23. OpenFrame.Name = "OpenFrame"
  24. OpenFrame.Parent = ScreenGui
  25. OpenFrame.BackgroundColor3 = Color3.new(0.568627, 0, 0.00784314)
  26. OpenFrame.Position = UDim2.new(0, 0, 0.444444448, 0)
  27. OpenFrame.Size = UDim2.new(0, 94, 0, 38)
  28.  
  29. Open.Name = "Open"
  30. Open.Parent = OpenFrame
  31. Open.BackgroundColor3 = Color3.new(0.568627, 0, 0.00784314)
  32. Open.Size = UDim2.new(0, 94, 0, 38)
  33. Open.Text = "Open"
  34. Open.TextColor3 = Color3.new(0, 0, 0)
  35. Open.TextSize = 16
  36. Open.MouseButton1Down:connect(function()
  37. MainFrame.Visible = true
  38. OpenFrame.Visible = false
  39. ComingSoon.Visible = false
  40. end)
  41.  
  42. MainFrame.Name = "MainFrame"
  43. MainFrame.Parent = ScreenGui
  44. MainFrame.BackgroundColor3 = Color3.new(0.568627, 0, 0.00784314)
  45. MainFrame.BackgroundTransparency = 0.0099999997764826
  46. MainFrame.Position = UDim2.new(0.320627809, 0, 0.27722773, 0)
  47. MainFrame.Size = UDim2.new(0, 456, 0, 484)
  48. MainFrame.Visible = false
  49. MainFrame.Active = true
  50. MainFrame.Draggable = true
  51.  
  52. Title.Name = "Title"
  53. Title.Parent = MainFrame
  54. Title.BackgroundColor3 = Color3.new(0.419608, 0, 0)
  55. Title.Size = UDim2.new(0, 456, 0, 50)
  56. Title.Text = "rbw2haxxx"
  57. Title.TextColor3 = Color3.new(0, 0, 0)
  58. Title.TextSize = 14
  59.  
  60. Credits.Name = "Credits"
  61. Credits.Parent = MainFrame
  62. Credits.BackgroundColor3 = Color3.new(0.419608, 0, 0)
  63. Credits.Position = UDim2.new(0, 0, 0.896694243, 0)
  64. Credits.Size = UDim2.new(0, 456, 0, 50)
  65. Credits.Text = "Made by ou1z#4584"
  66. Credits.TextColor3 = Color3.new(0, 0, 0)
  67. Credits.TextSize = 14
  68.  
  69. DropBall.Name = "DropBall"
  70. DropBall.Parent = MainFrame
  71. DropBall.BackgroundColor3 = Color3.new(0.419608, 0, 0)
  72. DropBall.Position = UDim2.new(0.0350877196, 0, 0.138429746, 0)
  73. DropBall.Size = UDim2.new(0, 201, 0, 50)
  74. DropBall.Text = "Drop Ball"
  75. DropBall.TextColor3 = Color3.new(0, 0, 0)
  76. DropBall.TextSize = 13
  77. DropBall.MouseButton1Down:connect(function()
  78. local descendants = game.workspace:GetDescendants()
  79.  
  80. for index, descendants in pairs(descendants) do
  81. if descendants .Name == "Basketball" then
  82. descendants.block:FireServer()
  83. end
  84. end
  85.  
  86. end)
  87.  
  88. StatChange.Name = "StatChange"
  89. StatChange.Parent = MainFrame
  90. StatChange.BackgroundColor3 = Color3.new(0.419608, 0, 0)
  91. StatChange.Position = UDim2.new(0.519736826, 0, 0.138429746, 0)
  92. StatChange.Size = UDim2.new(0, 201, 0, 50)
  93. StatChange.Text = "Stat Change"
  94. StatChange.TextColor3 = Color3.new(0, 0, 0)
  95. StatChange.TextSize = 13
  96. StatChange.MouseButton1Down:connect(function()
  97. loadstring(game:HttpGet("https://pastebin.com/raw/zzxzEbKM"))()
  98. end)
  99.  
  100. FixGlitch.Name = "FixGlitch"
  101. FixGlitch.Parent = MainFrame
  102. FixGlitch.BackgroundColor3 = Color3.new(0.419608, 0, 0)
  103. FixGlitch.Position = UDim2.new(0.519736826, 0, 0.276859492, 0)
  104. FixGlitch.Size = UDim2.new(0, 201, 0, 50)
  105. FixGlitch.Text = "Fix Glitch"
  106. FixGlitch.TextColor3 = Color3.new(0, 0, 0)
  107. FixGlitch.TextSize = 13
  108. FixGlitch.MouseButton1Down:connect(function()
  109. local ballweld = game.Players.LocalPlayer.Character["ball.weld"]
  110.  
  111. ballweld:Destroy()
  112. end)
  113.  
  114. GreenOnly.Name = "GreenOnly"
  115. GreenOnly.Parent = MainFrame
  116. GreenOnly.BackgroundColor3 = Color3.new(0.419608, 0, 0)
  117. GreenOnly.Position = UDim2.new(0.0350877047, 0, 0.276859492, 0)
  118. GreenOnly.Size = UDim2.new(0, 201, 0, 50)
  119. GreenOnly.Text = "Aimbot (Greens)"
  120. GreenOnly.TextColor3 = Color3.new(0, 0, 0)
  121. GreenOnly.TextSize = 13
  122. GreenOnly.MouseButton1Down:connect(function()
  123. loadstring(game:HttpGet("https://pastebin.com/raw/GH67C7eX"))()
  124. end)
  125.  
  126. Admin.Name = "Admin"
  127. Admin.Parent = MainFrame
  128. Admin.BackgroundColor3 = Color3.new(0.419608, 0, 0)
  129. Admin.Position = UDim2.new(0.0350877047, 0, 0.415289223, 0)
  130. Admin.Size = UDim2.new(0, 201, 0, 50)
  131. Admin.Text = "Admin"
  132. Admin.TextColor3 = Color3.new(0, 0, 0)
  133. Admin.TextSize = 13
  134. Admin.MouseButton1Down:connect(function()
  135. loadstring(game:HttpGet("https://pastebin.com/raw/muCDvZFm"))()
  136. end)
  137.  
  138. Fling.Name = "Fling"
  139. Fling.Parent = MainFrame
  140. Fling.BackgroundColor3 = Color3.new(0.419608, 0, 0)
  141. Fling.Position = UDim2.new(0.519736826, 0, 0.415289223, 0)
  142. Fling.Size = UDim2.new(0, 201, 0, 50)
  143. Fling.Text = "Fling"
  144. Fling.TextColor3 = Color3.new(0, 0, 0)
  145. Fling.TextSize = 13
  146. Fling.MouseButton1Down:connect(function()
  147. loadstring(game:HttpGet("https://pastebin.com/raw/iiyq2PLL"))()
  148. end)
  149.  
  150. ClickTP.Name = "ClickTP"
  151. ClickTP.Parent = MainFrame
  152. ClickTP.BackgroundColor3 = Color3.new(0.419608, 0, 0)
  153. ClickTP.Position = UDim2.new(0.0350877047, 0, 0.551652908, 0)
  154. ClickTP.Size = UDim2.new(0, 201, 0, 50)
  155. ClickTP.Text = "Click TP (press q)"
  156. ClickTP.TextColor3 = Color3.new(0, 0, 0)
  157. ClickTP.TextSize = 13
  158. ClickTP.MouseButton1Down:connect(function()
  159. loadstring(game:HttpGet("https://pastebin.com/raw/qyww70GR"))()
  160. end)
  161.  
  162. Reset.Name = "Reset"
  163. Reset.Parent = MainFrame
  164. Reset.BackgroundColor3 = Color3.new(0.419608, 0, 0)
  165. Reset.Position = UDim2.new(0.519736826, 0, 0.551652908, 0)
  166. Reset.Size = UDim2.new(0, 201, 0, 50)
  167. Reset.Text = "Reset"
  168. Reset.TextColor3 = Color3.new(0, 0, 0)
  169. Reset.TextSize = 13
  170. Reset.MouseButton1Down:connect(function()
  171. game.Players.LocalPlayer.Character.Torso:Destroy()
  172. end)
  173.  
  174. Close.Name = "Close"
  175. Close.Parent = MainFrame
  176. Close.BackgroundColor3 = Color3.new(0.419608, 0, 0)
  177. Close.Position = UDim2.new(0.868421078, 0, 0, 0)
  178. Close.Size = UDim2.new(0, 60, 0, 50)
  179. Close.Text = "X"
  180. Close.TextColor3 = Color3.new(0, 0, 0)
  181. Close.TextSize = 19
  182. Close.MouseButton1Down:connect(function()
  183. OpenFrame.Visible = true
  184. MainFrame.Visible = false
  185. end)
  186.  
  187. NextPage.Name = "NextPage"
  188. NextPage.Parent = MainFrame
  189. NextPage.BackgroundColor3 = Color3.new(0.419608, 0, 0)
  190. NextPage.Position = UDim2.new(0.276315778, 0, 0.729338825, 0)
  191. NextPage.Size = UDim2.new(0, 201, 0, 50)
  192. NextPage.Text = "Next"
  193. NextPage.TextColor3 = Color3.new(0, 0, 0)
  194. NextPage.TextSize = 13
  195. NextPage.MouseButton1Down:connect(function()
  196. Reset.Visible = false
  197. ClickTP.Visible = false
  198. Fling.Visible = false
  199. StatChange.Visible = false
  200. FixGlitch.Visible = false
  201. DropBall.Visible = false
  202. Admin.Visible = false
  203. GreenOnly.Visible = false
  204. BackPage.Visible = true
  205. ComingSoon.Visible = true
  206. end)
  207.  
  208. BackPage.Name = "BackPage"
  209. BackPage.Parent = MainFrame
  210. BackPage.BackgroundColor3 = Color3.new(0.419608, 0, 0)
  211. BackPage.Position = UDim2.new(0.276315778, 0, 0.729338825, 0)
  212. BackPage.Size = UDim2.new(0, 201, 0, 50)
  213. BackPage.Text = "Back"
  214. BackPage.TextColor3 = Color3.new(0, 0, 0)
  215. BackPage.TextSize = 13
  216. BackPage.Visible = false
  217. BackPage.MouseButton1Down:connect(function()
  218. NextPage.Visible = true
  219. Reset.Visible = true
  220. ClickTP.Visible = true
  221. Fling.Visible = true
  222. StatChange.Visible = true
  223. FixGlitch.Visible = true
  224. DropBall.Visible = true
  225. Admin.Visible = true
  226. GreenOnly.Visible = true
  227. BackPage.Visible = false
  228. ComingSoon.Visible = false
  229. end)
  230.  
  231. ComingSoon.Name = "ComingSoon..."
  232. ComingSoon.Parent = MainFrame
  233. ComingSoon.BackgroundColor3 = Color3.new(0.568627, 0, 0.00784314)
  234. ComingSoon.BorderColor3 = Color3.new(0.568627, 0, 0.00784314)
  235. ComingSoon.Position = UDim2.new(0.276315749, 0, 0.415289223, 0)
  236. ComingSoon.Size = UDim2.new(0, 200, 0, 50)
  237. ComingSoon.Text = "Coming Soon..."
  238. ComingSoon.TextColor3 = Color3.new(0, 0, 0)
  239. ComingSoon.TextSize = 18
  240. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement