Advertisement
Guest User

rb world 2 gui script

a guest
Jan 17th, 2020
7,432
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.30 KB | None | 0 0
  1. -- Gui to Lua
  2. -- Version: 3.1
  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 Close = Instance.new("TextButton")
  11. local Credits = Instance.new("TextLabel")
  12. local DropBall = Instance.new("TextButton")
  13. local Aimbot = Instance.new("TextButton")
  14. local Noclip = Instance.new("TextButton")
  15. local Sonic = Instance.new("TextButton")
  16.  
  17. --Properties:
  18.  
  19. ScreenGui.Parent = game.CoreGui
  20. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  21.  
  22. OpenFrame.Name = "OpenFrame"
  23. OpenFrame.Parent = ScreenGui
  24. OpenFrame.BackgroundColor3 = Color3.fromRGB(255, 85, 0)
  25. OpenFrame.BorderSizePixel = 0
  26. OpenFrame.Position = UDim2.new(-0.0128410915, 0, 0.666666687, 0)
  27. OpenFrame.Size = UDim2.new(0, 100, 0, 28)
  28.  
  29. Open.Name = "Open"
  30. Open.Parent = OpenFrame
  31. Open.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  32. Open.BackgroundTransparency = 1.000
  33. Open.BorderSizePixel = 0
  34. Open.Position = UDim2.new(0.189999998, 0, 0.214285716, 0)
  35. Open.Size = UDim2.new(0, 69, 0, 15)
  36. Open.Font = Enum.Font.SourceSans
  37. Open.Text = "Open"
  38. Open.TextColor3 = Color3.fromRGB(0, 0, 0)
  39. Open.TextSize = 14.000
  40. Open.TextWrapped = true
  41. Open.MouseButton1Down:connect(function()
  42. Main.Visible = true
  43. OpenFrame.Visible = false
  44. end)
  45.  
  46. Main.Name = "Main"
  47. Main.Parent = ScreenGui
  48. Main.Active = true
  49. Main.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  50. Main.BorderSizePixel = 0
  51. Main.Position = UDim2.new(0.260032117, 0, 0.285046726, 0)
  52. Main.Size = UDim2.new(0, 362, 0, 201)
  53. Main.Draggable = true
  54.  
  55. Close.Name = "Close"
  56. Close.Parent = Main
  57. Close.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  58. Close.BackgroundTransparency = 1.000
  59. Close.BorderSizePixel = 0
  60. Close.Position = UDim2.new(0.939226508, 0, 0, 0)
  61. Close.Size = UDim2.new(0, 22, 0, 17)
  62. Close.Font = Enum.Font.SourceSans
  63. Close.Text = "X"
  64. Close.TextColor3 = Color3.fromRGB(255, 0, 0)
  65. Close.TextSize = 14.000
  66. Close.TextWrapped = true
  67. Close.MouseButton1Down:connect(function()
  68. OpenFrame.Visible = true
  69. Main.Visible = false
  70. end)
  71.  
  72. Credits.Name = "Credits"
  73. Credits.Parent = Main
  74. Credits.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  75. Credits.BorderSizePixel = 0
  76. Credits.Position = UDim2.new(0, 0, 0.940298498, 0)
  77. Credits.Size = UDim2.new(0, 362, 0, 12)
  78. Credits.Font = Enum.Font.SourceSans
  79. Credits.Text = "Gui/Script Made by me (PlsNoSellMeDude)"
  80. Credits.TextColor3 = Color3.fromRGB(255, 255, 255)
  81. Credits.TextSize = 14.000
  82. Credits.TextWrapped = true
  83.  
  84. DropBall.Name = "DropBall"
  85. DropBall.Parent = Main
  86. DropBall.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
  87. DropBall.BorderSizePixel = 0
  88. DropBall.Position = UDim2.new(0.0331491716, 0, 0.169154227, 0)
  89. DropBall.Size = UDim2.new(0, 95, 0, 40)
  90. DropBall.Font = Enum.Font.SourceSans
  91. DropBall.Text = "DropBall"
  92. DropBall.TextColor3 = Color3.fromRGB(0, 0, 0)
  93. DropBall.TextSize = 14.000
  94. DropBall.TextWrapped = true
  95. DropBall.MouseButton1Click:Connect(function()
  96. local descendants = game.workspace:GetDescendants()
  97.  
  98. for index, descendants in pairs(descendants) do
  99. if descendants .Name == "Basketball" then
  100. descendants.block:FireServer()
  101. end
  102. end
  103.  
  104. end)
  105.  
  106. Aimbot.Name = "Aimbot"
  107. Aimbot.Parent = Main
  108. Aimbot.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
  109. Aimbot.BorderSizePixel = 0
  110. Aimbot.Position = UDim2.new(0.701657474, 0, 0.169154227, 0)
  111. Aimbot.Size = UDim2.new(0, 95, 0, 40)
  112. Aimbot.Font = Enum.Font.SourceSans
  113. Aimbot.Text = "Aimbot"
  114. Aimbot.TextColor3 = Color3.fromRGB(0, 0, 0)
  115. Aimbot.TextSize = 14.000
  116. Aimbot.TextWrapped = true
  117. Aimbot.MouseButton1Down:connect(function()
  118. loadstring(game:HttpGet("https://pastebin.com/raw/zzxzEbKM"))()
  119.  
  120. end)
  121.  
  122. Noclip.Name = "Noclip"
  123. Noclip.Parent = Main
  124. Noclip.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
  125. Noclip.BorderSizePixel = 0
  126. Noclip.Position = UDim2.new(0.0331491716, 0, 0.641791046, 0)
  127. Noclip.Size = UDim2.new(0, 95, 0, 40)
  128. Noclip.Font = Enum.Font.SourceSans
  129. Noclip.Text = "Noclip (Press F)"
  130. Noclip.TextColor3 = Color3.fromRGB(0, 0, 0)
  131. Noclip.TextSize = 14.000
  132. Noclip.TextWrapped = true
  133. Noclip.MouseButton1Down:connect(function()
  134. noclip = false
  135. game:GetService('RunService').Stepped:connect(function()
  136. if noclip then
  137. game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
  138. end
  139. end)
  140.  
  141. local plr = game.Players.LocalPlayer
  142. local mouse = plr:GetMouse()
  143. mouse.KeyDown:connect(function(key)
  144.  
  145. if key == "f" then
  146. noclip = not noclip
  147. game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
  148.  
  149. end
  150. end)
  151. end)
  152.  
  153. Sonic.Name = "Sonic"
  154. Sonic.Parent = Main
  155. Sonic.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
  156. Sonic.BorderSizePixel = 0
  157. Sonic.Position = UDim2.new(0.701657474, 0, 0.641791046, 0)
  158. Sonic.Size = UDim2.new(0, 95, 0, 40)
  159. Sonic.Font = Enum.Font.SourceSans
  160. Sonic.Text = "Sonic"
  161. Sonic.TextColor3 = Color3.fromRGB(0, 0, 0)
  162. Sonic.TextSize = 14.000
  163. Sonic.TextWrapped = true
  164. Sonic.MouseButton1Down:connect(function()
  165. game.Players.LocalPlayer.Character.Shirt.ShirtTemplate="rbxassetid://166997534"game.Players.LocalPlayer.Character.Pants.PantsTemplate="rbxassetid://37046037"game.Players.LocalPlayer.Character.Hat.Mesh.MeshId="rbxassetid://430064078"game.Players.LocalPlayer.Character.Hat.Mesh.TextureId="rbxassetid://430064079"game.Players.LocalPlayer.Character.ShoeL.TextureID="rbxassetid://1135791438"game.Players.LocalPlayer.Character.ShoeR.TextureID="rbxassetid://1135791544"
  166. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement