Project_MAtrix_ZERGO

Ballon Simulator hack gui

Apr 20th, 2019
171
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 18.61 KB | None | 0 0
  1. -- variable:
  2. local gems = game.Workspace.Gems
  3. local plr = game:GetService("Players").LocalPlayer
  4.  
  5. -- fungsi:
  6. eak = false
  7. eeq = false
  8. dewe = false
  9. ewe = false
  10. oke = false
  11. dah = false
  12. kn = false
  13. deden = false
  14. hehe = false
  15. tete = false
  16. fck = false
  17. kntl = false
  18. dem = false
  19. fx = false
  20. eas = false
  21. xec = false
  22. kntle = false
  23. edan = false
  24.  
  25. -- Instances:
  26. local Ent3g = Instance.new("ScreenGui")
  27. local Frame = Instance.new("Frame")
  28. local judul = Instance.new("TextLabel")
  29. local F1 = Instance.new("TextButton")
  30. local F2 = Instance.new("TextButton")
  31. local AR = Instance.new("TextButton")
  32. local AF = Instance.new("TextButton")
  33. local IB = Instance.new("TextButton")
  34. local AS = Instance.new("TextButton")
  35. local TP = Instance.new("TextButton")
  36. local ST = Instance.new("TextButton")
  37. local Tlist = Instance.new("ScrollingFrame")
  38. local W1 = Instance.new("TextButton")
  39. local W2 = Instance.new("TextButton")
  40. local W3 = Instance.new("TextButton")
  41. local W4 = Instance.new("TextButton")
  42. local W5 = Instance.new("TextButton")
  43. local C1 = Instance.new("TextButton")
  44. local C2 = Instance.new("TextButton")
  45. local C3 = Instance.new("TextButton")
  46. local Sfrm = Instance.new("Frame")
  47. local Sjudul = Instance.new("TextLabel")
  48. local Rainbow = Instance.new("TextButton")
  49. local WS = Instance.new("TextButton")
  50. local WST = Instance.new("TextBox")
  51. local JP = Instance.new("TextButton")
  52. local JPT = Instance.new("TextBox")
  53. local x = Instance.new("TextButton")
  54. --Properties:
  55. Ent3g.Name = "Ent3g"
  56. Ent3g.Parent = game.CoreGui
  57.  
  58. Frame.Parent = Ent3g
  59. Frame.BackgroundColor3 = Color3.new(0, 0.737255, 0.831373)
  60. Frame.BorderColor3 = Color3.new(0.0117647, 0.662745, 0.956863)
  61. Frame.BorderSizePixel = 3
  62. Frame.Active = true
  63. Frame.Draggable = true
  64. Frame.Position = UDim2.new(0.268093795, 0, 0.207848832, 0)
  65. Frame.Size = UDim2.new(0, 454, 0, 401)
  66.  
  67. judul.Name = "judul"
  68. judul.Parent = Frame
  69. judul.BackgroundColor3 = Color3.new(0, 0.737255, 0.831373)
  70. judul.BorderColor3 = Color3.new(0.0117647, 0.662745, 0.956863)
  71. judul.BorderSizePixel = 4
  72. judul.Position = UDim2.new(0, 0, -0.00190192612, 0)
  73. judul.Size = UDim2.new(0, 454, 0, 50)
  74. judul.Font = Enum.Font.Cartoon
  75. judul.Text = "BalloonSimulatorGUI"
  76. judul.TextColor3 = Color3.new(0, 0, 0)
  77. judul.TextSize = 31
  78.  
  79. F1.Name = "F1"
  80. F1.Parent = Frame
  81. F1.BackgroundColor3 = Color3.new(0, 0.737255, 0.831373)
  82. F1.BorderColor3 = Color3.new(0.0117647, 0.662745, 0.956863)
  83. F1.BorderSizePixel = 4
  84. F1.Position = UDim2.new(0.0206304304, 0, 0.199200004, 0)
  85. F1.Size = UDim2.new(0, 147, 0, 42)
  86. F1.Font = Enum.Font.Cartoon
  87. F1.Text = "GemFarm"
  88. F1.TextColor3 = Color3.new(0, 0, 0)
  89. F1.TextSize = 21
  90. F1.MouseButton1Down:connect(function()
  91.  
  92. if eak == true then
  93. eak = false
  94. F1.BackgroundColor3 = Color3.new(0, 0.737255, 0.831373)
  95. else
  96. eak = true
  97. F1.BackgroundColor3 = Color3.new(40, 127, 71)
  98.         for i,gem in pairs(gems:GetChildren()) do
  99.             wait(0.01)
  100.             gem.CFrame = plr.Character.HumanoidRootPart.CFrame
  101.         end
  102.         wait(20)
  103.     end
  104. end)
  105.  
  106. F2.Name = "F2"
  107. F2.Parent = Frame
  108. F2.BackgroundColor3 = Color3.new(0, 0.737255, 0.831373)
  109. F2.BorderColor3 = Color3.new(0.0117647, 0.662745, 0.956863)
  110. F2.BorderSizePixel = 4
  111. F2.Position = UDim2.new(0.0206304304, 0, 0.369998902, 0)
  112. F2.Size = UDim2.new(0, 147, 0, 42)
  113. F2.Font = Enum.Font.Cartoon
  114. F2.Text = "CoinFarm"
  115. F2.TextColor3 = Color3.new(0, 0, 0)
  116. F2.TextSize = 21
  117. F2.MouseButton1Down:connect(function()
  118.  
  119. if eeq == true then
  120. eeq = false
  121. F2.BackgroundColor3 = Color3.new(0, 0.737255, 0.831373)
  122. else
  123. eeq = true
  124. F2.BackgroundColor3 = Color3.new(40, 127, 71)
  125. while eeq do
  126. wait()
  127. game:GetService("ReplicatedStorage").FillBalloon:FireServer(200000)
  128. end
  129. end
  130. end)
  131.  
  132. AR.Name = "AR"
  133. AR.Parent = Frame
  134. AR.BackgroundColor3 = Color3.new(0, 0.737255, 0.831373)
  135. AR.BorderColor3 = Color3.new(0.0117647, 0.662745, 0.956863)
  136. AR.BorderSizePixel = 4
  137. AR.Position = UDim2.new(0.654991627, 0, 0.199200004, 0)
  138. AR.Size = UDim2.new(0, 147, 0, 42)
  139. AR.Font = Enum.Font.Cartoon
  140. AR.Text = "AutoRebirth"
  141. AR.TextColor3 = Color3.new(0, 0, 0)
  142. AR.TextSize = 21
  143. AR.MouseButton1Down:connect(function()
  144.  
  145. if dewe == true then
  146. dewe = false
  147. AR.BackgroundColor3 = Color3.new(0, 0.737255, 0.831373)
  148. else
  149. dewe = true
  150. AR.BackgroundColor3 = Color3.new(40, 127, 71)
  151. while dewe do
  152.     wait()
  153. game:GetService("ReplicatedStorage").Rebirth:InvokeServer()
  154. end
  155. end
  156. end)
  157.  
  158. AF.Name = "AF"
  159. AF.Parent = Frame
  160. AF.BackgroundColor3 = Color3.new(0, 0.737255, 0.831373)
  161. AF.BorderColor3 = Color3.new(0.0117647, 0.662745, 0.956863)
  162. AF.BorderSizePixel = 4
  163. AF.Position = UDim2.new(0.654991627, 0, 0.369998902, 0)
  164. AF.Size = UDim2.new(0, 147, 0, 42)
  165. AF.Font = Enum.Font.Cartoon
  166. AF.Text = "AntiAFK"
  167. AF.TextColor3 = Color3.new(0, 0, 0)
  168. AF.TextSize = 21
  169. AF.MouseButton1Down:connect(function()
  170.  
  171. if ewe == true then
  172. ewe = false
  173. AF.BackgroundColor3 = Color3.new(0, 0.737255, 0.831373)
  174. else
  175. ewe = true
  176. AF.BackgroundColor3 = Color3.new(40, 127, 71)
  177. local VirtualUser=game:service'VirtualUser'
  178. game:service'Players'.LocalPlayer.Idled:connect(function()
  179. VirtualUser:CaptureController()
  180. VirtualUser:ClickButton2(Vector2.new())
  181. end)
  182. end
  183. end)
  184.  
  185. IB.Name = "IB"
  186. IB.Parent = Frame
  187. IB.BackgroundColor3 = Color3.new(0, 0.737255, 0.831373)
  188. IB.BorderColor3 = Color3.new(0.0117647, 0.662745, 0.956863)
  189. IB.BorderSizePixel = 4
  190. IB.Position = UDim2.new(0.0206304193, 0, 0.54079783, 0)
  191. IB.Size = UDim2.new(0, 147, 0, 42)
  192. IB.Font = Enum.Font.Cartoon
  193. IB.Text = "InfiniteBackpack"
  194. IB.TextColor3 = Color3.new(0, 0, 0)
  195. IB.TextSize = 21
  196. IB.MouseButton1Down:connect(function()
  197.  
  198. if dah == true then
  199. dah = false
  200. IB.BackgroundColor3 = Color3.new(0, 0.737255, 0.831373)
  201. else
  202. dah = true
  203. IB.BackgroundColor3 = Color3.new(40, 127, 71)
  204. game:GetService("ReplicatedStorage").BuyBalloon:InvokeServer("Unlimited")
  205. end
  206. end)
  207.  
  208. AS.Name = "AS"
  209. AS.Parent = Frame
  210. AS.BackgroundColor3 = Color3.new(0, 0.737255, 0.831373)
  211. AS.BorderColor3 = Color3.new(0.0117647, 0.662745, 0.956863)
  212. AS.BorderSizePixel = 4
  213. AS.Position = UDim2.new(0.654991627, 0, 0.54079783, 0)
  214. AS.Size = UDim2.new(0, 147, 0, 42)
  215. AS.Font = Enum.Font.Cartoon
  216. AS.Text = "AutoSell"
  217. AS.TextColor3 = Color3.new(0, 0, 0)
  218. AS.TextSize = 21
  219. AS.MouseButton1Down:connect(function()
  220.  
  221. if oke == true then
  222. oke = false
  223. AS.BackgroundColor3 = Color3.new(0, 0.737255, 0.831373)
  224. else
  225. oke = true
  226. AS.BackgroundColor3 = Color3.new(40, 127, 71)
  227. while oke do
  228. wait()
  229. game.Workspace.UITriggers.Sell.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  230. end
  231. end
  232. end)
  233.  
  234. TP.Name = "TP"
  235. TP.Parent = Frame
  236. TP.BackgroundColor3 = Color3.new(0, 0.737255, 0.831373)
  237. TP.BorderColor3 = Color3.new(0.0117647, 0.662745, 0.956863)
  238. TP.BorderSizePixel = 4
  239. TP.Position = UDim2.new(0.0206304193, 0, 0.714351535, 0)
  240. TP.Size = UDim2.new(0, 147, 0, 42)
  241. TP.Font = Enum.Font.Cartoon
  242. TP.Text = "Teleport"
  243. TP.TextColor3 = Color3.new(0, 0, 0)
  244. TP.TextSize = 21
  245. TP.MouseButton1Down:connect(function()
  246.  
  247. if kn == true then
  248. kn = false
  249. TP.BackgroundColor3 = Color3.new(0, 0.737255, 0.831373)
  250. Tlist.Visible = false
  251. else
  252. kn = true
  253. TP.BackgroundColor3 = Color3.new(40, 127, 71)
  254. Tlist.Visible = true
  255. end
  256. end)
  257.  
  258. ST.Name = "ST"
  259. ST.Parent = Frame
  260. ST.BackgroundColor3 = Color3.new(0, 0.737255, 0.831373)
  261. ST.BorderColor3 = Color3.new(0.0117647, 0.662745, 0.956863)
  262. ST.BorderSizePixel = 4
  263. ST.Position = UDim2.new(0.654991627, 0, 0.714351535, 0)
  264. ST.Size = UDim2.new(0, 147, 0, 42)
  265. ST.Font = Enum.Font.Cartoon
  266. ST.Text = "Settings"
  267. ST.TextColor3 = Color3.new(0, 0, 0)
  268. ST.TextSize = 21
  269. ST.MouseButton1Down:connect(function()
  270.  
  271. if deden == true then
  272. deden = false
  273. ST.BackgroundColor3 = Color3.new(0, 0.737255, 0.831373)
  274. Sfrm.Visible = false
  275. else
  276. deden = true
  277. ST.BackgroundColor3 = Color3.new(40, 127, 71)
  278. Sfrm.Visible = true
  279. end
  280. end)
  281.  
  282. Tlist.Name = "Tlist"
  283. Tlist.Parent = Frame
  284. Tlist.BackgroundColor3 = Color3.new(0, 0.737255, 0.831373)
  285. Tlist.BorderColor3 = Color3.new(0.0117647, 0.662745, 0.956863)
  286. Tlist.BorderSizePixel = 4
  287. Tlist.Position = UDim2.new(-0.361233473, 0, 0, 0)
  288. Tlist.Size = UDim2.new(0, 148, 0, 363)
  289. Tlist.Visible = false
  290.  
  291. W1.Name = "W1"
  292. W1.Parent = Tlist
  293. W1.BackgroundColor3 = Color3.new(0, 0.737255, 0.831373)
  294. W1.BorderColor3 = Color3.new(0.0117647, 0.662745, 0.956863)
  295. W1.BorderSizePixel = 4
  296. W1.Position = UDim2.new(0.0544141829, 0, 0.0185631812, 0)
  297. W1.Size = UDim2.new(0, 116, 0, 42)
  298. W1.Font = Enum.Font.Cartoon
  299. W1.Text = "Spawn"
  300. W1.TextColor3 = Color3.new(0, 0, 0)
  301. W1.TextSize = 21
  302. W1.MouseButton1Down:connect(function()
  303.  
  304. if hehe == true then
  305. hehe = false
  306. W1.BackgroundColor3 = Color3.new(0, 0.737255, 0.831373)
  307. else
  308. hehe = true
  309. W1.BackgroundColor3 = Color3.new(40, 127, 71)
  310. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Workspace.Destinations.Skyland.CFrame
  311. end
  312. end)
  313.  
  314. W2.Name = "W2"
  315. W2.Parent = Tlist
  316. W2.BackgroundColor3 = Color3.new(0, 0.737255, 0.831373)
  317. W2.BorderColor3 = Color3.new(0.0117647, 0.662745, 0.956863)
  318. W2.BorderSizePixel = 4
  319. W2.Position = UDim2.new(0.0544141829, 0, 0.0984529853, 0)
  320. W2.Size = UDim2.new(0, 116, 0, 42)
  321. W2.Font = Enum.Font.Cartoon
  322. W2.Text = "Tropical Paradise"
  323. W2.TextColor3 = Color3.new(0, 0, 0)
  324. W2.TextSize = 14
  325. W2.MouseButton1Down:connect(function()
  326.  
  327. if tete == true then
  328. tete = false
  329. W2.BackgroundColor3 = Color3.new(0, 0.737255, 0.831373)
  330. else
  331. tete = true
  332. W2.BackgroundColor3 = Color3.new(40, 127, 71)
  333. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Workspace.Destinations["Tropical Paradise"].CFrame
  334. end
  335. end)
  336.  
  337. W3.Name = "W3"
  338. W3.Parent = Tlist
  339. W3.BackgroundColor3 = Color3.new(0, 0.737255, 0.831373)
  340. W3.BorderColor3 = Color3.new(0.0117647, 0.662745, 0.956863)
  341. W3.BorderSizePixel = 4
  342. W3.Position = UDim2.new(0.0544141829, 0, 0.175587982, 0)
  343. W3.Size = UDim2.new(0, 116, 0, 42)
  344. W3.Font = Enum.Font.Cartoon
  345. W3.Text = "CandyLand"
  346. W3.TextColor3 = Color3.new(0, 0, 0)
  347. W3.TextSize = 21
  348. W3.MouseButton1Down:connect(function()
  349.  
  350. if fck == true then
  351. fck = false
  352. W3.BackgroundColor3 = Color3.new(0, 0.737255, 0.831373)
  353. else
  354. fck = true
  355. W3.BackgroundColor3 = Color3.new(40, 127, 71)
  356. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Workspace.Destinations["Candyland"].CFrame
  357. end
  358. end)
  359.  
  360. W4.Name = "W4"
  361. W4.Parent = Tlist
  362. W4.BackgroundColor3 = Color3.new(0, 0.737255, 0.831373)
  363. W4.BorderColor3 = Color3.new(0.0117647, 0.662745, 0.956863)
  364. W4.BorderSizePixel = 4
  365. W4.Position = UDim2.new(0.0544141829, 0, 0.255477786, 0)
  366. W4.Size = UDim2.new(0, 116, 0, 42)
  367. W4.Font = Enum.Font.Cartoon
  368. W4.Text = "ArcherVille"
  369. W4.TextColor3 = Color3.new(0, 0, 0)
  370. W4.TextSize = 21
  371. W4.MouseButton1Down:connect(function()
  372.  
  373. if kntl == true then
  374. kntl = false
  375. W4.BackgroundColor3 = Color3.new(0, 0.737255, 0.831373)
  376. else
  377. kntl = true
  378. W4.BackgroundColor3 = Color3.new(40, 127, 71)
  379. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Workspace.Destinations["Archerville"].CFrame
  380. end
  381. end)
  382.  
  383. W5.Name = "W5"
  384. W5.Parent = Tlist
  385. W5.BackgroundColor3 = Color3.new(0, 0.737255, 0.831373)
  386. W5.BorderColor3 = Color3.new(0.0117647, 0.662745, 0.956863)
  387. W5.BorderSizePixel = 4
  388. W5.Position = UDim2.new(0.0544141829, 0, 0.336744994, 0)
  389. W5.Size = UDim2.new(0, 116, 0, 42)
  390. W5.Font = Enum.Font.Cartoon
  391. W5.Text = "Ancient Greece"
  392. W5.TextColor3 = Color3.new(0, 0, 0)
  393. W5.TextSize = 14
  394. W5.MouseButton1Down:connect(function()
  395.  
  396. if dem == true then
  397. dem = false
  398. W5.BackgroundColor3 = Color3.new(0, 0.737255, 0.831373)
  399. else
  400. dem = true
  401. W5.BackgroundColor3 = Color3.new(40, 127, 71)
  402. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Workspace.Destinations["Ancient Greece"].CFrame
  403. end
  404. end)
  405.  
  406. C1.Name = "C1"
  407. C1.Parent = Tlist
  408. C1.BackgroundColor3 = Color3.new(0, 0.737255, 0.831373)
  409. C1.BorderColor3 = Color3.new(0.0117647, 0.662745, 0.956863)
  410. C1.BorderSizePixel = 4
  411. C1.Position = UDim2.new(0.0544141829, 0, 0.413879991, 0)
  412. C1.Size = UDim2.new(0, 116, 0, 42)
  413. C1.Font = Enum.Font.Cartoon
  414. C1.Text = "Chest1"
  415. C1.TextColor3 = Color3.new(0, 0, 0)
  416. C1.TextSize = 21
  417. C1.MouseButton1Down:connect(function()
  418.  
  419. if fx == true then
  420. fx = false
  421. C1.BackgroundColor3 = Color3.new(0, 0.737255, 0.831373)
  422. else
  423. fx = true
  424. C1.BackgroundColor3 = Color3.new(40, 127, 71)
  425. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Workspace.Chests["ArcherChest"].CFrame
  426. end
  427. end)
  428.  
  429. C2.Name = "C2"
  430. C2.Parent = Tlist
  431. C2.BackgroundColor3 = Color3.new(0, 0.737255, 0.831373)
  432. C2.BorderColor3 = Color3.new(0.0117647, 0.662745, 0.956863)
  433. C2.BorderSizePixel = 4
  434. C2.Position = UDim2.new(0.0544141829, 0, 0.492392391, 0)
  435. C2.Size = UDim2.new(0, 116, 0, 42)
  436. C2.Font = Enum.Font.Cartoon
  437. C2.Text = "Chest2"
  438. C2.TextColor3 = Color3.new(0, 0, 0)
  439. C2.TextSize = 21
  440. C2.MouseButton1Down:connect(function()
  441.  
  442. if eas == true then
  443. eas = false
  444. C2.BackgroundColor3 = Color3.new(0, 0.737255, 0.831373)
  445. else
  446. eas = true
  447. C2.BackgroundColor3 = Color3.new(40, 127, 71)
  448. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Workspace.Chests["BeachChest"].CFrame
  449. end
  450. end)
  451.  
  452. C3.Name = "C3"
  453. C3.Parent = Tlist
  454. C3.BackgroundColor3 = Color3.new(0, 0.737255, 0.831373)
  455. C3.BorderColor3 = Color3.new(0.0117647, 0.662745, 0.956863)
  456. C3.BorderSizePixel = 4
  457. C3.Position = UDim2.new(0.0544141829, 0, 0.569527328, 0)
  458. C3.Size = UDim2.new(0, 116, 0, 42)
  459. C3.Font = Enum.Font.Cartoon
  460. C3.Text = "Chest3"
  461. C3.TextColor3 = Color3.new(0, 0, 0)
  462. C3.TextSize = 21
  463. C3.MouseButton1Down:connect(function()
  464.  
  465. if xec == true then
  466. xec = false
  467. C3.BackgroundColor3 = Color3.new(0, 0.737255, 0.831373)
  468. else
  469. xec = true
  470. C3.BackgroundColor3 = Color3.new(40, 127, 71)
  471. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Workspace.Chests["AncientChest"].CFrame
  472. end
  473. end)
  474.  
  475. Sfrm.Name = "Sfrm"
  476. Sfrm.Parent = Frame
  477. Sfrm.BackgroundColor3 = Color3.new(0, 0.737255, 0.831373)
  478. Sfrm.BorderColor3 = Color3.new(0.0117647, 0.662745, 0.956863)
  479. Sfrm.BorderSizePixel = 3
  480. Sfrm.Position = UDim2.new(1.02422905, 0, -0.00249376567, 0)
  481. Sfrm.Size = UDim2.new(0, 190, 0, 401)
  482. Sfrm.Visible = false
  483.  
  484. Sjudul.Name = "Sjudul"
  485. Sjudul.Parent = Sfrm
  486. Sjudul.BackgroundColor3 = Color3.new(0, 0.737255, 0.831373)
  487. Sjudul.BorderColor3 = Color3.new(0.0117647, 0.662745, 0.956863)
  488. Sjudul.BorderSizePixel = 4
  489. Sjudul.Size = UDim2.new(0, 190, 0, 50)
  490. Sjudul.Font = Enum.Font.Cartoon
  491. Sjudul.Text = "Settings"
  492. Sjudul.TextColor3 = Color3.new(0, 0, 0)
  493. Sjudul.TextSize = 31
  494.  
  495. Rainbow.Name = "Rainbow"
  496. Rainbow.Parent = Sfrm
  497. Rainbow.BackgroundColor3 = Color3.new(0, 0.737255, 0.831373)
  498. Rainbow.BorderColor3 = Color3.new(0.0117647, 0.662745, 0.956863)
  499. Rainbow.BorderSizePixel = 4
  500. Rainbow.Position = UDim2.new(0.0894736871, 0, 0.179551125, 0)
  501. Rainbow.Size = UDim2.new(0, 155, 0, 50)
  502. Rainbow.Font = Enum.Font.Cartoon
  503. Rainbow.Text = "Rainbow: Off"
  504. Rainbow.TextColor3 = Color3.new(0, 0, 0)
  505. Rainbow.TextSize = 31
  506.  
  507. WS.Name = "WS"
  508. WS.Parent = Sfrm
  509. WS.BackgroundColor3 = Color3.new(0, 0.737255, 0.831373)
  510. WS.BorderColor3 = Color3.new(0.0117647, 0.662745, 0.956863)
  511. WS.BorderSizePixel = 4
  512. WS.Position = UDim2.new(0.0894736871, 0, 0.817955077, 0)
  513. WS.Size = UDim2.new(0, 155, 0, 50)
  514. WS.Font = Enum.Font.Cartoon
  515. WS.Text = "Walkspeed"
  516. WS.TextColor3 = Color3.new(0, 0, 0)
  517. WS.TextSize = 31
  518. WS.MouseButton1Down:connect(function()
  519.  
  520. if kntle == true then
  521. kntle = false
  522. WS.BackgroundColor3 = Color3.new(0, 0.737255, 0.831373)
  523. else
  524. kntle = true
  525. WS.BackgroundColor3 = Color3.new(40, 127, 71)
  526. local x = WST.Text
  527. game.workspace[game.Players.LocalPlayer.Name].Humanoid.WalkSpeed = x
  528. end
  529. end)
  530.  
  531. WST.Name = "WST"
  532. WST.Parent = Sfrm
  533. WST.BackgroundColor3 = Color3.new(0, 0.737255, 0.831373)
  534. WST.BorderColor3 = Color3.new(0.0117647, 0.662745, 0.956863)
  535. WST.BorderSizePixel = 4
  536. WST.Position = UDim2.new(0.115789473, 0, 0.66583544, 0)
  537. WST.Size = UDim2.new(0, 142, 0, 50)
  538. WST.Font = Enum.Font.Cartoon
  539. WST.Text = "150"
  540. WST.TextColor3 = Color3.new(0, 0, 0)
  541. WST.TextSize = 31
  542.  
  543. JP.Name = "JP"
  544. JP.Parent = Sfrm
  545. JP.BackgroundColor3 = Color3.new(0, 0.737255, 0.831373)
  546. JP.BorderColor3 = Color3.new(0.0117647, 0.662745, 0.956863)
  547. JP.BorderSizePixel = 4
  548. JP.Position = UDim2.new(0.0894736871, 0, 0.496259302, 0)
  549. JP.Size = UDim2.new(0, 155, 0, 50)
  550. JP.Font = Enum.Font.Cartoon
  551. JP.Text = "JumpPower"
  552. JP.TextColor3 = Color3.new(0, 0, 0)
  553. JP.TextSize = 31
  554. JP.MouseButton1Down:connect(function()
  555.  
  556. if edan == true then
  557. edan = false
  558. JP.BackgroundColor3 = Color3.new(0, 0.737255, 0.831373)
  559. else
  560. edan = true
  561. JP.BackgroundColor3 = Color3.new(40, 127, 71)
  562. local c = JPT.Text
  563. game.workspace[game.Players.LocalPlayer.Name].Humanoid.JumpPower = c
  564. end
  565. end)
  566.  
  567. JPT.Name = "JPT"
  568. JPT.Parent = Sfrm
  569. JPT.BackgroundColor3 = Color3.new(0, 0.737255, 0.831373)
  570. JPT.BorderColor3 = Color3.new(0.0117647, 0.662745, 0.956863)
  571. JPT.BorderSizePixel = 4
  572. JPT.Position = UDim2.new(0.126315787, 0, 0.336658388, 0)
  573. JPT.Size = UDim2.new(0, 142, 0, 50)
  574. JPT.Font = Enum.Font.Cartoon
  575. JPT.Text = "15"
  576. JPT.TextColor3 = Color3.new(0, 0, 0)
  577. JPT.TextSize = 31
  578.  
  579. x.Name = "x"
  580. x.Parent = Frame
  581. x.BackgroundColor3 = Color3.new(1, 1, 1)
  582. x.BackgroundTransparency = 1
  583. x.Position = UDim2.new(0.929515421, 0, -0.00249376567, 0)
  584. x.Size = UDim2.new(0, 32, 0, 23)
  585. x.Font = Enum.Font.Cartoon
  586. x.Text = "X"
  587. x.TextColor3 = Color3.new(0.956863, 0.262745, 0.211765)
  588. x.TextSize = 31
  589. x.MouseButton1Down:connect(function()
  590.     Ent3g:Destroy()
  591. end)
  592.  
  593. -- Scripts:
  594.  
  595. -- Rainbow:
  596. local RainbowEnabled = false
  597. local rs = game:GetService("RunService")
  598. local RRAAIINNBBOOWWSS = {}
  599. local function rainbowify(obj, prop)
  600.     if type(obj) == "table" then
  601.         for i, v in pairs(obj) do
  602.             rainbowify(v, prop)
  603.         end
  604.     elseif type(prop) == "table" then
  605.         for i, v in pairs(prop) do
  606.             rainbowify(obj, v)
  607.         end
  608.     else
  609.         local ok, o = pcall(function()
  610.             return obj[prop]
  611.         end)
  612.         if ok then
  613.             table.insert(RRAAIINNBBOOWWSS, function(c)
  614.                 if c then
  615.                     obj[prop] = c
  616.                 else
  617.                     obj[prop] = o
  618.                 end
  619.             end)
  620.         end
  621.     end
  622. end
  623. do
  624.     local reset = true
  625.     rs.RenderStepped:connect(function()
  626.         if RainbowEnabled then
  627.             local c = Color3.fromHSV((tick() / 16) % 1, 1, 1)
  628.             for i = 1, #RRAAIINNBBOOWWSS do
  629.                 pcall(RRAAIINNBBOOWWSS[i], c)
  630.             end
  631.             reset = true
  632.         elseif reset then
  633.             for i = 1, #RRAAIINNBBOOWWSS do
  634.                 pcall(RRAAIINNBBOOWWSS[i], false)
  635.             end
  636.             reset = false
  637.         end
  638.     end)
  639. end
  640. rainbowify({Ent3g, Frame, Sfrm, Tlist, IB, AF, AR, F1, F2, AS, TP, ST, judul, WS, JP, WST, JPT, Sjudul, x, C3, C2, C1, W1, W2, W3, W4, W5}
  641. , {"BackgroundColor3",})
  642.  
  643. Rainbow.MouseButton1Down:connect(function()
  644.     RainbowEnabled = not RainbowEnabled
  645.     if RainbowEnabled then
  646.         Rainbow.Text = "Rainbow: On"
  647.     else
  648.         Rainbow.Text = "Rainbow: Off"
  649.     end
  650. end)
Add Comment
Please, Sign In to add comment