Advertisement
xTrill

RB World 2 GUI

Aug 29th, 2018
4,280
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 23.10 KB | None | 0 0
  1. -- Farewell Infortality.
  2. -- Version: 2.82
  3. -- Instances:
  4. local rbworld2 = Instance.new("ScreenGui")
  5. local Background = Instance.new("Frame")
  6. local barline = Instance.new("Frame")
  7. local topbar = Instance.new("Frame")
  8. local rbworld2gui = Instance.new("TextLabel")
  9. local exit = Instance.new("TextButton")
  10. local minimize = Instance.new("TextButton")
  11. local boxing = Instance.new("TextButton")
  12. local shooting = Instance.new("TextButton")
  13. local handles = Instance.new("TextButton")
  14. local nocliping = Instance.new("TextButton")
  15. local TextButton_3 = Instance.new("TextButton") -- B to speed
  16. local TextButton = Instance.new("TextButton") -- east to west
  17. local TextButton_4 = Instance.new("TextButton") -- west to east
  18. local TextButton_2 = Instance.new("TextButton") -- click tp
  19. local TextButtona = Instance.new("TextButton") -- aimbot
  20. local TextButton_5 = Instance.new("TextButton") -- statchange
  21. local Open = Instance.new("TextButton")
  22. --Properties:
  23. rbworld2.Name = "rbworld2"
  24. rbworld2.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  25.  
  26. Background.Name = "Background"
  27. Background.Parent = rbworld2
  28. Background.Active = true
  29. Background.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  30. Background.Position = UDim2.new(0.241860479, 0, 0.285100281, 0)
  31. Background.Selectable = true
  32. Background.Size = UDim2.new(0, 500, 0, 300)
  33. Background.Draggable = true
  34. Background.Visible = false
  35.  
  36. barline.Name = "barline"
  37. barline.Parent = Background
  38. barline.Active = true
  39. barline.BackgroundColor3 = Color3.new(0.0392157, 0.0392157, 0.0392157)
  40. barline.BorderSizePixel = 0
  41. barline.Position = UDim2.new(0, 0, 0.116666667, 0)
  42. barline.Selectable = true
  43. barline.Size = UDim2.new(0, 500, 0, 6)
  44.  
  45. topbar.Name = "topbar"
  46. topbar.Parent = Background
  47. topbar.Active = true
  48. topbar.BackgroundColor3 = Color3.new(0.0588235, 0.0588235, 0.0588235)
  49. topbar.BorderSizePixel = 0
  50. topbar.Selectable = true
  51. topbar.Size = UDim2.new(0, 420, 0, 35)
  52.  
  53. rbworld2gui.Name = "rbworld2gui"
  54. rbworld2gui.Parent = topbar
  55. rbworld2gui.BackgroundColor3 = Color3.new(1, 1, 1)
  56. rbworld2gui.BackgroundTransparency = 1
  57. rbworld2gui.BorderSizePixel = 0
  58. rbworld2gui.Size = UDim2.new(0, 420, 0, 35)
  59. rbworld2gui.Font = Enum.Font.Highway
  60. rbworld2gui.Text = "RB World 2 GUI"
  61. rbworld2gui.TextColor3 = Color3.new(1, 1, 1)
  62. rbworld2gui.TextSize = 25
  63.  
  64. exit.Name = "exit"
  65. exit.Parent = topbar
  66. exit.BackgroundColor3 = Color3.new(0.0588235, 0.0588235, 0.0588235)
  67. exit.BorderSizePixel = 0
  68. exit.Position = UDim2.new(1.09619045, 0, 0, 0)
  69. exit.Size = UDim2.new(0, 40, 0, 35)
  70. exit.Font = Enum.Font.ArialBold
  71. exit.Text = "X"
  72. exit.TextColor3 = Color3.new(1, 1, 1)
  73. exit.TextSize = 25
  74. exit.MouseButton1Click:connect(function()
  75.     Background.Visible = false
  76. end)
  77.  
  78. minimize.Name = "minimize"
  79. minimize.Parent = topbar
  80. minimize.BackgroundColor3 = Color3.new(0.0588235, 0.0588235, 0.0588235)
  81. minimize.BorderSizePixel = 0
  82. minimize.Position = UDim2.new(0.999523699, 0, 0, 0)
  83. minimize.Size = UDim2.new(0, 40, 0, 35)
  84. minimize.Font = Enum.Font.SourceSans
  85. minimize.Text = "-"
  86. minimize.TextColor3 = Color3.new(1, 1, 1)
  87. minimize.TextSize = 50
  88. minimize.MouseButton1Click:connect(function()
  89.     Background.Visible = false
  90.     Open.Visible = true
  91. end)
  92.  
  93. boxing.Name = "boxing"
  94. boxing.Parent = Background
  95. boxing.BackgroundColor3 = Color3.new(0.0588235, 0.0588235, 0.0588235)
  96. boxing.BorderColor3 = Color3.new(0.0392157, 0.0392157, 0.0392157)
  97. boxing.BorderSizePixel = 3
  98. boxing.Position = UDim2.new(0.0199999996, 0, 0.170000002, 0)
  99. boxing.Size = UDim2.new(0, 150, 0, 50)
  100. boxing.Font = Enum.Font.Highway
  101. boxing.Text = "Boxing [1 - 8]"
  102. boxing.TextColor3 = Color3.new(1, 1, 1)
  103. boxing.TextSize = 16
  104.  
  105. shooting.Name = "shooting"
  106. shooting.Parent = Background
  107. shooting.BackgroundColor3 = Color3.new(0.0588235, 0.0588235, 0.0588235)
  108. shooting.BorderColor3 = Color3.new(0.0392157, 0.0392157, 0.0392157)
  109. shooting.BorderSizePixel = 3
  110. shooting.Position = UDim2.new(0.349999994, 0, 0.170000002, 0)
  111. shooting.Size = UDim2.new(0, 150, 0, 50)
  112. shooting.Font = Enum.Font.Highway
  113. shooting.Text = "Shooting [1 - 8]"
  114. shooting.TextColor3 = Color3.new(1, 1, 1)
  115. shooting.TextSize = 16
  116.  
  117. handles.Name = "handles"
  118. handles.Parent = Background
  119. handles.BackgroundColor3 = Color3.new(0.0588235, 0.0588235, 0.0588235)
  120. handles.BorderColor3 = Color3.new(0.0392157, 0.0392157, 0.0392157)
  121. handles.BorderSizePixel = 3
  122. handles.Position = UDim2.new(0.680000007, 0, 0.170000002, 0)
  123. handles.Size = UDim2.new(0, 150, 0, 50)
  124. handles.Font = Enum.Font.Highway
  125. handles.Text = "Handles [1 - 6]"
  126. handles.TextColor3 = Color3.new(1, 1, 1)
  127. handles.TextSize = 16
  128.  
  129. nocliping.Name = "nocliping"
  130. nocliping.Parent = Background
  131. nocliping.BackgroundColor3 = Color3.new(0.0588235, 0.0588235, 0.0588235)
  132. nocliping.BorderColor3 = Color3.new(0.0392157, 0.0392157, 0.0392157)
  133. nocliping.BorderSizePixel = 3
  134. nocliping.Position = UDim2.new(0.0199999996, 0, 0.369999975, 0)
  135. nocliping.Size = UDim2.new(0, 150, 0, 50)
  136. nocliping.Font = Enum.Font.Highway
  137. nocliping.Text = "No-Clip [L]"
  138. nocliping.TextColor3 = Color3.new(1, 1, 1)
  139. nocliping.TextSize = 16
  140.  
  141. TextButton_3.Name = "TextButton_3"
  142. TextButton_3.Parent = Background
  143. TextButton_3.BackgroundColor3 = Color3.new(0.0588235, 0.0588235, 0.0588235)
  144. TextButton_3.BorderColor3 = Color3.new(0.0392157, 0.0392157, 0.0392157)
  145. TextButton_3.BorderSizePixel = 3
  146. TextButton_3.Position = UDim2.new(0.680000007, 0, 0.370000005, 0)
  147. TextButton_3.Size = UDim2.new(0, 150, 0, 50)
  148. TextButton_3.Font = Enum.Font.Highway
  149. TextButton_3.Text = "Speed [B]"
  150. TextButton_3.TextColor3 = Color3.new(1, 1, 1)
  151. TextButton_3.TextSize = 16
  152. TextButton_3.TextWrapped = true
  153.  
  154. TextButton.Name = "TextButton"
  155. TextButton.Parent = Background
  156. TextButton.BackgroundColor3 = Color3.new(0.0588235, 0.0588235, 0.0588235)
  157. TextButton.BorderColor3 = Color3.new(0.0392157, 0.0392157, 0.0392157)
  158. TextButton.BorderSizePixel = 3
  159. TextButton.Position = UDim2.new(0.0199999996, 0, 0.569999993, 0)
  160. TextButton.Size = UDim2.new(0, 150, 0, 50)
  161. TextButton.Font = Enum.Font.Highway
  162. TextButton.Text = "Change to Westlake"
  163. TextButton.TextColor3 = Color3.new(1, 1, 1)
  164. TextButton.TextSize = 16
  165. TextButton.TextWrapped = true
  166.  
  167. TextButton_4.Name = "TextButton_4"
  168. TextButton_4.Parent = Background
  169. TextButton_4.BackgroundColor3 = Color3.new(0.0588235, 0.0588235, 0.0588235)
  170. TextButton_4.BorderColor3 = Color3.new(0.0392157, 0.0392157, 0.0392157)
  171. TextButton_4.BorderSizePixel = 3
  172. TextButton_4.Position = UDim2.new(0.680000007, 0, 0.569999993, 0)
  173. TextButton_4.Size = UDim2.new(0, 150, 0, 50)
  174. TextButton_4.Font = Enum.Font.Highway
  175. TextButton_4.Text = "Change to Eastside"
  176. TextButton_4.TextColor3 = Color3.new(1, 1, 1)
  177. TextButton_4.TextSize = 16
  178. TextButton_4.TextWrapped = true
  179.  
  180. TextButton_2.Name = "TextButton_2"
  181. TextButton_2.Parent = Background
  182. TextButton_2.BackgroundColor3 = Color3.new(0.0588235, 0.0588235, 0.0588235)
  183. TextButton_2.BorderColor3 = Color3.new(0.0392157, 0.0392157, 0.0392157)
  184. TextButton_2.BorderSizePixel = 3
  185. TextButton_2.Position = UDim2.new(0.349999994, 0, 0.569999993, 0)
  186. TextButton_2.Size = UDim2.new(0, 150, 0, 50)
  187. TextButton_2.Font = Enum.Font.Highway
  188. TextButton_2.Text = "Click TP [N to Toggle]"
  189. TextButton_2.TextColor3 = Color3.new(1, 1, 1)
  190. TextButton_2.TextSize = 16
  191. TextButton_2.TextWrapped = true
  192.  
  193. TextButtona.Name = "TextButtona"
  194. TextButtona.Parent = Background
  195. TextButtona.BackgroundColor3 = Color3.new(0.0588235, 0.0588235, 0.0588235)
  196. TextButtona.BorderColor3 = Color3.new(0.0392157, 0.0392157, 0.0392157)
  197. TextButtona.BorderSizePixel = 3
  198. TextButtona.Position = UDim2.new(0.25, 0, 0.776666641, 0)
  199. TextButtona.Size = UDim2.new(0, 250, 0, 50)
  200. TextButtona.Font = Enum.Font.Highway
  201. TextButtona.Text = "Aimbot [F]"
  202. TextButtona.TextColor3 = Color3.new(1, 1, 1)
  203. TextButtona.TextSize = 16
  204. TextButtona.TextWrapped = true
  205.  
  206. TextButton_5.Name = "TextButton_5"
  207. TextButton_5.Parent = Background
  208. TextButton_5.BackgroundColor3 = Color3.new(0.0588235, 0.0588235, 0.0588235)
  209. TextButton_5.BorderColor3 = Color3.new(0.0392157, 0.0392157, 0.0392157)
  210. TextButton_5.BorderSizePixel = 3
  211. TextButton_5.Position = UDim2.new(0.350000024, 0, 0.369999975, 0)
  212. TextButton_5.Size = UDim2.new(0, 150, 0, 50)
  213. TextButton_5.Font = Enum.Font.Highway
  214. TextButton_5.Text = "Statchange"
  215. TextButton_5.TextColor3 = Color3.new(1, 1, 1)
  216. TextButton_5.TextSize = 16
  217. TextButton_5.TextWrapped = true
  218.  
  219. Open.Name = "Open"
  220. Open.Parent = rbworld2
  221. Open.BackgroundColor3 = Color3.new(0.0588235, 0.0588235, 0.0588235)
  222. Open.BorderColor3 = Color3.new(0.0392157, 0.0392157, 0.0392157)
  223. Open.BorderSizePixel = 3
  224. Open.Position = UDim2.new(0.0775193721, 0, 0.95415473, 0)
  225. Open.Size = UDim2.new(0, 50, 0, 20)
  226. Open.Font = Enum.Font.SourceSans
  227. Open.Text = "Open"
  228. Open.TextColor3 = Color3.new(1, 1, 1)
  229. Open.TextSize = 14
  230. Open.Draggable = true
  231. Open.MouseButton1Click:connect(function()
  232.     Background.Visible = true
  233.     Open.Visible = false
  234. end)
  235. -- Scripts:
  236. -- boxing
  237. boxing.MouseButton1Down:connect(function()
  238.     plr = game.Players.LocalPlayer
  239. hum = plr.Character.HumanoidRootPart
  240. mouse = plr:GetMouse()
  241. mouse.KeyDown:connect(function(key)
  242. if key == "1" then
  243. Player = "LocalPlayer"
  244. AnimationId = "1041466496"
  245. local Anim = Instance.new("Animation")
  246. Anim.AnimationId = "rbxassetid://"..AnimationId
  247. local k = game.Players[Player].Character.Humanoid:LoadAnimation(Anim)
  248. k:Play() --Play the animation
  249. k:AdjustSpeed(0.7)
  250. end
  251. if key == "2" then
  252. Player = "LocalPlayer"
  253. AnimationId = "1041465309"
  254. local Anim = Instance.new("Animation")
  255. Anim.AnimationId = "rbxassetid://"..AnimationId
  256. local k = game.Players[Player].Character.Humanoid:LoadAnimation(Anim)
  257. k:Play() --Play the animation
  258. k:AdjustSpeed(0.7)
  259. end
  260. if key == "3" then
  261. Player = "LocalPlayer"
  262. AnimationId = "1041464760"
  263. local Anim = Instance.new("Animation")
  264. Anim.AnimationId = "rbxassetid://"..AnimationId
  265. local k = game.Players[Player].Character.Humanoid:LoadAnimation(Anim)
  266. k:Play() --Play the animation
  267. k:AdjustSpeed(0.7)
  268. end
  269. if key == "4" then
  270. Player = "LocalPlayer"
  271. AnimationId = "1041464105"
  272. local Anim = Instance.new("Animation")
  273. Anim.AnimationId = "rbxassetid://"..AnimationId
  274. local k = game.Players[Player].Character.Humanoid:LoadAnimation(Anim)
  275. k:Play() --Play the animation
  276. k:AdjustSpeed(0.7)
  277. end
  278. if key == "5" then
  279. Player = "LocalPlayer"
  280. AnimationId = "1041463398"
  281. local Anim = Instance.new("Animation")
  282. Anim.AnimationId = "rbxassetid://"..AnimationId
  283. local k = game.Players[Player].Character.Humanoid:LoadAnimation(Anim)
  284. k:Play() --Play the animation
  285. k:AdjustSpeed(0.7)
  286. end
  287. if key == "6" then
  288. Player = "LocalPlayer"
  289. AnimationId = "1041681504"
  290. local Anim = Instance.new("Animation")
  291. Anim.AnimationId = "rbxassetid://"..AnimationId
  292. local k = game.Players[Player].Character.Humanoid:LoadAnimation(Anim)
  293. k:Play() --Play the animation
  294. k:AdjustSpeed(0.7)
  295. end
  296. if key == "7" then
  297. Player = "LocalPlayer"
  298. AnimationId = "1041468960"
  299. local Anim = Instance.new("Animation")
  300. Anim.AnimationId = "rbxassetid://"..AnimationId
  301. local k = game.Players[Player].Character.Humanoid:LoadAnimation(Anim)
  302. k:Play() --Play the animation
  303. k:AdjustSpeed(0.7)
  304. end
  305. if key == "8" then
  306. Player = "LocalPlayer"
  307. AnimationId = "1041469538"
  308. local Anim = Instance.new("Animation")
  309. Anim.AnimationId = "rbxassetid://"..AnimationId
  310. local k = game.Players[Player].Character.Humanoid:LoadAnimation(Anim)
  311. k:Play() --Play the animation
  312. k:AdjustSpeed(1)
  313. end
  314. if key == "9" then
  315. Player = "LocalPlayer"
  316. AnimationId = "1041374433"
  317. local Anim = Instance.new("Animation")
  318. Anim.AnimationId = "rbxassetid://"..AnimationId
  319. local k = game.Players[Player].Character.Humanoid:LoadAnimation(Anim)
  320. k:Play() --Play the animation
  321. k:AdjustSpeed(1)
  322. end
  323. end)
  324. print 'boxing loaded'
  325. end)
  326.  
  327. --shooting
  328. shooting.MouseButton1Down:connect(function()
  329.     --made by me am nub#5289
  330. plr = game.Players.LocalPlayer
  331. hum = plr.Character.HumanoidRootPart
  332. mouse = plr:GetMouse()
  333. mouse.KeyDown:connect(function(key)
  334. if key == "1" then
  335. Player = "LocalPlayer"
  336. AnimationId = "1500063444"
  337. local Anim = Instance.new("Animation")
  338. Anim.AnimationId = "rbxassetid://"..AnimationId
  339. local k = game.Players[Player].Character.Humanoid:LoadAnimation(Anim)
  340. k:Play() --Play the animation
  341. k:AdjustSpeed(0.7)
  342. end
  343. if key == "2" then
  344. Player = "LocalPlayer"
  345. AnimationId = "2154547001"
  346. local Anim = Instance.new("Animation")
  347. Anim.AnimationId = "rbxassetid://"..AnimationId
  348. local k = game.Players[Player].Character.Humanoid:LoadAnimation(Anim)
  349. k:Play() --Play the animation
  350. k:AdjustSpeed(0.7)
  351. end
  352. if key == "3" then
  353. Player = "LocalPlayer"
  354. AnimationId = "2154732014"
  355. local Anim = Instance.new("Animation")
  356. Anim.AnimationId = "rbxassetid://"..AnimationId
  357. local k = game.Players[Player].Character.Humanoid:LoadAnimation(Anim)
  358. k:Play() --Play the animation
  359. k:AdjustSpeed(0.7)
  360. end
  361. if key == "4" then
  362. Player = "LocalPlayer"
  363. AnimationId = "2152683519"
  364. local Anim = Instance.new("Animation")
  365. Anim.AnimationId = "rbxassetid://"..AnimationId
  366. local k = game.Players[Player].Character.Humanoid:LoadAnimation(Anim)
  367. k:Play() --Play the animation
  368. k:AdjustSpeed(0.7)
  369. end
  370. if key == "5" then
  371. Player = "LocalPlayer"
  372. AnimationId = "2152097956"
  373. local Anim = Instance.new("Animation")
  374. Anim.AnimationId = "rbxassetid://"..AnimationId
  375. local k = game.Players[Player].Character.Humanoid:LoadAnimation(Anim)
  376. k:Play() --Play the animation
  377. k:AdjustSpeed(0.7)
  378. end
  379. if key == "6" then
  380. Player = "LocalPlayer"
  381. AnimationId = "2152707100"
  382. local Anim = Instance.new("Animation")
  383. Anim.AnimationId = "rbxassetid://"..AnimationId
  384. local k = game.Players[Player].Character.Humanoid:LoadAnimation(Anim)
  385. k:Play() --Play the animation
  386. k:AdjustSpeed(0.7)
  387. end
  388. if key == "7" then
  389. Player = "LocalPlayer"
  390. AnimationId = "2150246156"
  391. local Anim = Instance.new("Animation")
  392. Anim.AnimationId = "rbxassetid://"..AnimationId
  393. local k = game.Players[Player].Character.Humanoid:LoadAnimation(Anim)
  394. k:Play() --Play the animation
  395. k:AdjustSpeed(0.7)
  396. end
  397. if key == "8" then
  398. Player = "LocalPlayer"
  399. AnimationId = "2154738988"
  400. local Anim = Instance.new("Animation")
  401. Anim.AnimationId = "rbxassetid://"..AnimationId
  402. local k = game.Players[Player].Character.Humanoid:LoadAnimation(Anim)
  403. k:Play() --Play the animation
  404. k:AdjustSpeed(0.7)
  405. end
  406. end)
  407. print 'fake shooting loaded'
  408. end)
  409.  
  410. --handles
  411. handles.MouseButton1Down:connect(function()
  412.     -- script was made by desmondwizard
  413. -- edited by me am nub#5289
  414. plr = game.Players.LocalPlayer
  415. hum = plr.Character.HumanoidRootPart
  416. mouse = plr:GetMouse()
  417. mouse.KeyDown:connect(function(key)
  418. if key == "1" then
  419. Player = "LocalPlayer"
  420. AnimationId = "696028900"
  421. local Anim = Instance.new("Animation")
  422. Anim.AnimationId = "rbxassetid://"..AnimationId
  423. local k = game.Players[Player].Character.Humanoid:LoadAnimation(Anim)
  424. k:Play() --Play the animation
  425. k:AdjustSpeed(1.4)
  426. end
  427. if key == "2" then
  428. Player = "LocalPlayer"
  429. AnimationId = "695995381"
  430. local Anim = Instance.new("Animation")
  431. Anim.AnimationId = "rbxassetid://"..AnimationId
  432. local k = game.Players[Player].Character.Humanoid:LoadAnimation(Anim)
  433. k:Play() --Play the animation
  434. k:AdjustSpeed(1.4)
  435. end
  436. if key == "3" then
  437. Player = "LocalPlayer"
  438. AnimationId = "1060181050"
  439. local Anim = Instance.new("Animation")
  440. Anim.AnimationId = "rbxassetid://"..AnimationId
  441. local k = game.Players[Player].Character.Humanoid:LoadAnimation(Anim)
  442. k:Play() --Play the animation
  443. k:AdjustSpeed(1.4)
  444. end
  445. if key == "4" then
  446. Player = "LocalPlayer"
  447. AnimationId = "1060180407"
  448. local Anim = Instance.new("Animation")
  449. Anim.AnimationId = "rbxassetid://"..AnimationId
  450. local k = game.Players[Player].Character.Humanoid:LoadAnimation(Anim)
  451. k:Play() --Play the animation
  452. k:AdjustSpeed(1.4)
  453. end
  454. if key == "5" then
  455. Player = "LocalPlayer"
  456. AnimationId = "695413209"
  457. local Anim = Instance.new("Animation")
  458. Anim.AnimationId = "rbxassetid://"..AnimationId
  459. local k = game.Players[Player].Character.Humanoid:LoadAnimation(Anim)
  460. k:Play() --Play the animation
  461. k:AdjustSpeed(1.4)
  462. end
  463. if key == "6" then
  464. Player = "LocalPlayer"
  465. AnimationId = "695421765"
  466. local Anim = Instance.new("Animation")
  467. Anim.AnimationId = "rbxassetid://"..AnimationId
  468. local k = game.Players[Player].Character.Humanoid:LoadAnimation(Anim)
  469. k:Play() --Play the animation
  470. k:AdjustSpeed(1.4)
  471. end
  472. end)
  473. print 'fake handles loaded'
  474. end)
  475.  
  476. --noclip
  477. nocliping.MouseButton1Down:connect(function()
  478.     game:getService("RunService"):BindToRenderStep("",0,function()
  479. if not game.Players.LocalPlayer.Character:findFirstChildOfClass("Humanoid") then return end
  480. if game:getService("UserInputService"):IsKeyDown(Enum.KeyCode.L) then
  481. game.Players.LocalPlayer.Character:findFirstChildOfClass("Humanoid"):ChangeState(11)
  482. end
  483. end)
  484. end)
  485.  
  486. coroutine.resume(coroutine.create(SCRIPT_NQID85_FAKESCRIPT))
  487. function SCRIPT_HXKZ70_FAKESCRIPT() -- TextButton.Script
  488.     getfenv().script = Instance.new('Script', TextButton)
  489.  
  490.     function Click()
  491.     game.ReplicatedStorage.places:FindFirstChild("RB Eastside Park").Value = 593223204
  492.     print 'worked';
  493.     end
  494.    
  495.     script.Parent.MouseButton1Down:connect(Click)
  496.  
  497. end
  498. coroutine.resume(coroutine.create(SCRIPT_HXKZ70_FAKESCRIPT))
  499. function SCRIPT_CDAN70_FAKESCRIPT() -- TextButton_2.Script
  500.     getfenv().script = Instance.new('Script', TextButton_2)
  501.  
  502.     function whatever()
  503.     toggle = true
  504.     togglekey = "n" --Key that you will use to toggle the on and off
  505.     killkey   = "k" --Key that you will use to kill a player
  506.     function Hint(txt)
  507.         local b = Instance.new('Hint', workspace)
  508.         b.Text = txt
  509.         wait(2)
  510.         b:Destroy()
  511.     end
  512.     Local = game:GetService('Players').LocalPlayer
  513.     Mouse = Local:GetMouse()
  514.     Mouse.Button1Down:connect(function()
  515.         pcall(function()
  516.             if toggle then
  517.                 Local.Character.HumanoidRootPart.CFrame = Local:GetMouse().Hit
  518.             end
  519.         end)
  520.     end)
  521.     Mouse.KeyDown:connect(function(key)
  522.         if key == togglekey then
  523.             if toggle then
  524.                 toggle = false
  525.                 Hint('Turned Off!')
  526.                 print ('Turned Off!')
  527.             else
  528.                 toggle = true
  529.                 Hint('Turned On!')
  530.                 print ('Turned On!')
  531.             end
  532.         elseif key == killkey then
  533.             if toggle then
  534.                 pcall(function()
  535.                     Mouse.Target.Parent:FindFirstChild('Humanoid').Health = 0
  536.                     Hint('Killed ' .. Mouse.Target.Parent.Name)
  537.                 end)
  538.             end
  539.         end
  540.     end)
  541.     end
  542.    
  543.     script.Parent.MouseButton1Down:connect(whatever)
  544.  
  545. end
  546. coroutine.resume(coroutine.create(SCRIPT_CDAN70_FAKESCRIPT))
  547. function SCRIPT_GLUY88_FAKESCRIPT() -- TextButton_3.Script
  548.     getfenv().script = Instance.new('Script', TextButton_3)
  549.  
  550.     function whatever()
  551.     -- << K1LL0X >> --
  552.    
  553.     --This may be a little buggy, so beware.
  554.     --Hold "B" to speed up
  555.    
  556.     down = false
  557.     velocity = Instance.new("BodyVelocity")
  558.     velocity.maxForce = Vector3.new(100000, 0, 100000)
  559.     ---vv Use that to change the speed v
  560.     local speed = 60
  561.     gyro = Instance.new("BodyGyro")
  562.     gyro.maxTorque = Vector3.new(100000, 0, 100000)
  563.    
  564.     local hum = game.Players.LocalPlayer.Character.Humanoid
  565.    
  566.     function onButton1Down(mouse)
  567.     down = true
  568.     velocity.Parent = game.Players.LocalPlayer.Character.UpperTorso
  569.     velocity.velocity = (hum.MoveDirection) * speed
  570.     gyro.Parent = game.Players.LocalPlayer.Character.UpperTorso
  571.     while down do
  572.     if not down then break end
  573.     velocity.velocity = (hum.MoveDirection) * speed
  574.     local refpos = gyro.Parent.Position + (gyro.Parent.Position - workspace.CurrentCamera.CoordinateFrame.p).unit * 5
  575.     gyro.cframe = CFrame.new(gyro.Parent.Position, Vector3.new(refpos.x, gyro.Parent.Position.y, refpos.z))
  576.     wait(0.1)
  577.     end
  578.     end
  579.    
  580.     function onButton1Up(mouse)
  581.     velocity.Parent = nil
  582.     gyro.Parent = nil
  583.     down = false
  584.     end
  585.     --To Change the key in those 2 lines, replace the "b" with your desired key
  586.     function onSelected(mouse)
  587.     mouse.KeyDown:connect(function(k) if k:lower()=="b"then onButton1Down(mouse)end end)
  588.     mouse.KeyUp:connect(function(k) if k:lower()=="b"then onButton1Up(mouse)end end)
  589.     end
  590.    
  591.     onSelected(game.Players.LocalPlayer:GetMouse())
  592.     end
  593.    
  594.     script.Parent.MouseButton1Down:connect(whatever)
  595.  
  596. end
  597. coroutine.resume(coroutine.create(SCRIPT_GLUY88_FAKESCRIPT))
  598. function SCRIPT_GNVI87_FAKESCRIPT() -- TextButton_4.Script
  599.     getfenv().script = Instance.new('Script', TextButton_4)
  600.  
  601.     function Click()
  602.     game.ReplicatedStorage.places:FindFirstChild("RB Westlake Park").Value = 591582661
  603.     print 'worked';
  604.     end
  605.    
  606.     script.Parent.MouseButton1Down:connect(Click)
  607.  
  608. end
  609. coroutine.resume(coroutine.create(SCRIPT_GNVI87_FAKESCRIPT))
  610. function SCRIPT_UALC68_FAKESCRIPT() -- TextButtona.Script
  611.     getfenv().script = Instance.new('Script', TextButtona)
  612.  
  613.     function whatever()
  614.    
  615.     --// MAINVARS //--
  616.    
  617.     remotes = game:GetService("ReplicatedStorage").gameplay
  618.     mouse = game.Players.LocalPlayer:GetMouse()
  619.    
  620.     --// EDITVARS //--
  621.    
  622.     _G.accuracy = 99 -- Accuracy; 99 Makes it in almost always; 100 is always a green;
  623.     _G.key = "f" -- Key to press to activate;
  624.    
  625.     --// SCRIPT //--
  626.    
  627.     print("Press f to shoot! \nPress f to toggle accuracy between 99 and 100!")
  628.    
  629.     --// ACCURACY SWITCH
  630.    
  631.     mouse.KeyDown:connect(function(k)
  632.     if k == "q" then
  633.     if _G.accuracy == 99 then
  634.     _G.accuracy = 100
  635.     elseif _G.accuracy == 100 then
  636.     _G.accuracy = 99
  637.     end
  638.     print(_G.accuracy)
  639.     end
  640.     end)
  641.    
  642.     --// SHOOT
  643.    
  644.     mouse.KeyDown:connect(function(k)
  645.     if k == _G.key then
  646.     for _,v in pairs(game.Workspace:GetChildren()) do
  647.     if v.Name == "Basketball" then
  648.     if v.controller.Value == game.Players.LocalPlayer.Name then
  649.     local oncourt = "Court"..tonumber(game.Players.LocalPlayer.System.OnCourt.Value)
  650.     local onhoop = "_Hoop"..tonumber(game.Players.LocalPlayer.System.OnTeam.Value)
  651.     remotes.character.value:FireServer("shooting", true)
  652.     if game.Workspace[oncourt]:FindFirstChild(onhoop) then
  653.     v.shoot:FireServer(game.Workspace[oncourt][onhoop], _G.accuracy, true)
  654.     elseif game.Workspace[oncourt]:FindFirstChild("_Hoop1") then
  655.     v.shoot:FireServer(game.Workspace[oncourt]["_Hoop1"], _G.accuracy, true)
  656.     end
  657.     end
  658.     end
  659.     end
  660.     end
  661.     end)
  662.     end
  663.    
  664.     script.Parent.MouseButton1Down:connect(whatever)
  665.  
  666. end
  667.  
  668. coroutine.resume(coroutine.create(SCRIPT_TDKL65_FAKESCRIPT))
  669. function SCRIPT_FJCZ68_FAKESCRIPT() -- TextButton_5.Script
  670.     getfenv().script = Instance.new('Script', TextButton_5)
  671.  
  672.     function whatever()
  673.         --[[
  674.        Name: RB_statchange.lua
  675.        Author: poly#8531
  676.        Desc: Yes, you can edit this.
  677.     ]]
  678.    
  679.     for i,v in next, debug.getregistry() do
  680.        if type(v) == 'function' then
  681.            local s, yo = pcall(function() return debug.getupvalues(v) end)
  682.            if yo and type(yo) == 'table' then
  683.                if yo.Attributes then
  684.                    local hi = yo.Attributes;
  685.                    hi.freethrow = math.huge;
  686.                    hi.postscorer = math.huge;
  687.                    hi.ballspeed  = math.huge;
  688.                    hi.jump = 50;
  689.                    hi.steal = math.huge;
  690.                    hi.shotcontest = 0;
  691.                    hi["2pointer"] = math.huge;
  692.                    hi["3pointer"] = math.huge;
  693.                    hi.passing = math.huge;
  694.                    hi.layup = math.huge;
  695.                    hi.strength = math.huge;
  696.                    hi.dunk = math.huge;
  697.                    hi.speed = math.huge;
  698.                    hi.handles = math.huge;
  699.                    hi.movingshot = math.huge;
  700.                    hi.defense = math.huge;
  701.                    hi.stamina = math.huge;
  702.                end;
  703.            end;
  704.        end;
  705.     end;
  706.     end
  707.    
  708.     script.Parent.MouseButton1Down:connect(whatever)
  709.  
  710.     end
  711.    
  712.     coroutine.resume(coroutine.create(SCRIPT_SIAV81_FAKESCRIPT))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement