retpee

Cruise [Story] [Exploit Gui]

Aug 9th, 2021 (edited)
527
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 18.65 KB | None | 0 0
  1. --Game Link--
  2. --https://www.roblox.com/games/5042581461/Cruise-Story
  3. --Shorter version of this script--
  4. --loadstring(game:HttpGet("https://pastebin.com/8P0bjGgf", true))()--
  5. --]]
  6.  
  7. --Gui 1--
  8.  
  9. -- Instances
  10.  
  11. local ScreenGui = Instance.new("ScreenGui")
  12. local Gui = Instance.new("Frame")
  13. local UICorner = Instance.new("UICorner")
  14. local Name = Instance.new("TextLabel")
  15. local UICorner_2 = Instance.new("UICorner")
  16. local FreeItems = Instance.new("TextLabel")
  17. local UICorner_3 = Instance.new("UICorner")
  18. local Sandwich = Instance.new("TextButton")
  19. local UICorner_4 = Instance.new("UICorner")
  20. local BloxyCola = Instance.new("TextButton")
  21. local UICorner_5 = Instance.new("UICorner")
  22. local Pizza = Instance.new("TextButton")
  23. local UICorner_6 = Instance.new("UICorner")
  24. local IceCream = Instance.new("TextButton")
  25. local UICorner_7 = Instance.new("UICorner")
  26. local Fork = Instance.new("TextButton")
  27. local UICorner_8 = Instance.new("UICorner")
  28. local Paper = Instance.new("TextButton")
  29. local UICorner_9 = Instance.new("UICorner")
  30. local Ticket = Instance.new("TextButton")
  31. local UICorner_10 = Instance.new("UICorner")
  32. local Crowbar = Instance.new("TextButton")
  33. local UICorner_11 = Instance.new("UICorner")
  34. local Water = Instance.new("TextButton")
  35. local UICorner_12 = Instance.new("UICorner")
  36. local Cookie = Instance.new("TextButton")
  37. local UICorner_13 = Instance.new("UICorner")
  38. local Crowbar_2 = Instance.new("TextButton")
  39. local UICorner_14 = Instance.new("UICorner")
  40. local Flashlight = Instance.new("TextButton")
  41. local UICorner_15 = Instance.new("UICorner")
  42.  
  43. -- Properties
  44.  
  45. ScreenGui.Parent = game.CoreGui
  46.  
  47. Gui.Name = "Gui"
  48. Gui.Parent = ScreenGui
  49. Gui.BackgroundColor3 = Color3.new(0.0705882, 0.686275, 0.784314)
  50. Gui.Position = UDim2.new(0.912769616, 0, 0.0198628232, 0)
  51. Gui.Size = UDim2.new(0, 90, 0, 479)
  52. Gui.Active = true
  53. Gui.Draggable = true
  54.  
  55. UICorner.Parent = Gui
  56.  
  57. Name.Name = "Name"
  58. Name.Parent = Gui
  59. Name.BackgroundColor3 = Color3.new(0.541176, 0.929412, 0.992157)
  60. Name.Position = UDim2.new(-0.00190565316, 0, -0.00203831424, 0)
  61. Name.Size = UDim2.new(0, 90, 0, 50)
  62. Name.Font = Enum.Font.RobotoCondensed
  63. Name.Text = "Cruise [Story]"
  64. Name.TextColor3 = Color3.new(0, 0, 0)
  65. Name.TextSize = 17
  66.  
  67. UICorner_2.Parent = Name
  68.  
  69. FreeItems.Name = "Free Items"
  70. FreeItems.Parent = Gui
  71. FreeItems.BackgroundColor3 = Color3.new(0.541176, 0.929412, 0.992157)
  72. FreeItems.Position = UDim2.new(-0.013016765, 0, 0.119680211, 0)
  73. FreeItems.Size = UDim2.new(0, 90, 0, 17)
  74. FreeItems.Font = Enum.Font.RobotoCondensed
  75. FreeItems.Text = "Free Items"
  76. FreeItems.TextColor3 = Color3.new(0, 0, 0)
  77. FreeItems.TextSize = 14
  78.  
  79. UICorner_3.Parent = FreeItems
  80.  
  81. Sandwich.Name = "Sandwich"
  82. Sandwich.Parent = Gui
  83. Sandwich.BackgroundColor3 = Color3.new(0.541176, 0.929412, 0.992157)
  84. Sandwich.Position = UDim2.new(0.0666666701, 0, 0.173727766, 0)
  85. Sandwich.Size = UDim2.new(0, 75, 0, 23)
  86. Sandwich.Font = Enum.Font.RobotoCondensed
  87. Sandwich.Text = "Sandwich"
  88. Sandwich.TextColor3 = Color3.new(0, 0, 0)
  89. Sandwich.TextSize = 14
  90. Sandwich.MouseButton1Down:connect(function()
  91.     local A_1 = "Sandwich"
  92.     local A_2 = "Cash"
  93.     local A_3 = 0
  94.     local Event = game:GetService("ReplicatedStorage").Remotes.buyItemEvent
  95.     Event:FireServer(A_1, A_2, A_3)
  96. end)
  97.  
  98. UICorner_4.Parent = Sandwich
  99.  
  100. BloxyCola.Name = "Bloxy Cola"
  101. BloxyCola.Parent = Gui
  102. BloxyCola.BackgroundColor3 = Color3.new(0.541176, 0.929412, 0.992157)
  103. BloxyCola.Position = UDim2.new(0.0777777806, 0, 0.239743382, 0)
  104. BloxyCola.Size = UDim2.new(0, 75, 0, 23)
  105. BloxyCola.Font = Enum.Font.RobotoCondensed
  106. BloxyCola.Text = "Bloxy Cola"
  107. BloxyCola.TextColor3 = Color3.new(0, 0, 0)
  108. BloxyCola.TextSize = 14
  109. BloxyCola.MouseButton1Down:connect(function()
  110.     local A_1 = "Bloxycola"
  111.     local A_2 = "Cash"
  112.     local A_3 = 0
  113.     local Event = game:GetService("ReplicatedStorage").Remotes.buyItemEvent
  114.     Event:FireServer(A_1, A_2, A_3)
  115. end)
  116.  
  117. UICorner_5.Parent = BloxyCola
  118.  
  119. Pizza.Name = "Pizza"
  120. Pizza.Parent = Gui
  121. Pizza.BackgroundColor3 = Color3.new(0.541176, 0.929412, 0.992157)
  122. Pizza.Position = UDim2.new(0.0666666701, 0, 0.311953455, 0)
  123. Pizza.Size = UDim2.new(0, 75, 0, 23)
  124. Pizza.Font = Enum.Font.RobotoCondensed
  125. Pizza.Text = "Pizza"
  126. Pizza.TextColor3 = Color3.new(0, 0, 0)
  127. Pizza.TextSize = 14
  128. Pizza.MouseButton1Down:connect(function()
  129.     local A_1 = "Pizza"
  130.     local A_2 = "Cash"
  131.     local A_3 = 0
  132.     local Event = game:GetService("ReplicatedStorage").Remotes.buyItemEvent
  133.     Event:FireServer(A_1, A_2, A_3)
  134. end)
  135.  
  136. UICorner_6.Parent = Pizza
  137.  
  138. IceCream.Name = "Ice Cream"
  139. IceCream.Parent = Gui
  140. IceCream.BackgroundColor3 = Color3.new(0.541176, 0.929412, 0.992157)
  141. IceCream.Position = UDim2.new(0.0777777806, 0, 0.38526687, 0)
  142. IceCream.Size = UDim2.new(0, 75, 0, 23)
  143. IceCream.Font = Enum.Font.RobotoCondensed
  144. IceCream.Text = "Ice Cream"
  145. IceCream.TextColor3 = Color3.new(0, 0, 0)
  146. IceCream.TextSize = 14
  147. IceCream.MouseButton1Down:connect(function()
  148.     local A_1 = "Icecream"
  149.     local A_2 = "Cash"
  150.     local A_3 = 0
  151.     local Event = game:GetService("ReplicatedStorage").Remotes.buyItemEvent
  152.     Event:FireServer(A_1, A_2, A_3)
  153. end)
  154.  
  155. UICorner_7.Parent = IceCream
  156.  
  157. Fork.Name = "Fork"
  158. Fork.Parent = Gui
  159. Fork.BackgroundColor3 = Color3.new(0.541176, 0.929412, 0.992157)
  160. Fork.Position = UDim2.new(0.0777777806, 0, 0.454510421, 0)
  161. Fork.Size = UDim2.new(0, 75, 0, 23)
  162. Fork.Font = Enum.Font.RobotoCondensed
  163. Fork.Text = "Fork"
  164. Fork.TextColor3 = Color3.new(0, 0, 0)
  165. Fork.TextSize = 14
  166. Fork.MouseButton1Down:connect(function()
  167.     local A_1 = "Fork"
  168.     local Event = game:GetService("ReplicatedStorage").Remotes.giveItemEvent
  169.     Event:FireServer(A_1)
  170. end)
  171.  
  172. UICorner_8.Parent = Fork
  173.  
  174. Paper.Name = "Paper"
  175. Paper.Parent = Gui
  176. Paper.BackgroundColor3 = Color3.new(0.541176, 0.929412, 0.992157)
  177. Paper.Position = UDim2.new(0.0777777806, 0, 0.52793473, 0)
  178. Paper.Size = UDim2.new(0, 75, 0, 23)
  179. Paper.Font = Enum.Font.RobotoCondensed
  180. Paper.Text = "Toilet Paper"
  181. Paper.TextColor3 = Color3.new(0, 0, 0)
  182. Paper.TextSize = 14
  183. Paper.MouseButton1Down:connect(function()
  184.     local A_1 = "toiletPaper"
  185.     local Event = game:GetService("ReplicatedStorage").Remotes.giveItemEvent
  186.     Event:FireServer(A_1)
  187. end)
  188.  
  189. UICorner_9.Parent = Paper
  190.  
  191. Ticket.Name = "Ticket"
  192. Ticket.Parent = Gui
  193. Ticket.BackgroundColor3 = Color3.new(0.541176, 0.929412, 0.992157)
  194. Ticket.Position = UDim2.new(0.0777777806, 0, 0.597041726, 0)
  195. Ticket.Size = UDim2.new(0, 75, 0, 23)
  196. Ticket.Font = Enum.Font.RobotoCondensed
  197. Ticket.Text = "Ticket"
  198. Ticket.TextColor3 = Color3.new(0, 0, 0)
  199. Ticket.TextSize = 14
  200. Ticket.MouseButton1Down:connect(function()
  201.     local A_1 = "Ticket"
  202.     local Event = game:GetService("ReplicatedStorage").Remotes.giveItemEvent
  203.     Event:FireServer(A_1)
  204. end)
  205.  
  206. UICorner_10.Parent = Ticket
  207.  
  208. Crowbar.Name = "Crowbar"
  209. Crowbar.Parent = Gui
  210. Crowbar.BackgroundColor3 = Color3.new(0.541176, 0.929412, 0.992157)
  211. Crowbar.Position = UDim2.new(0.0777777806, 0, 0.672558427, 0)
  212. Crowbar.Size = UDim2.new(0, 75, 0, 23)
  213. Crowbar.Font = Enum.Font.RobotoCondensed
  214. Crowbar.Text = "Crowbar"
  215. Crowbar.TextColor3 = Color3.new(0, 0, 0)
  216. Crowbar.TextSize = 14
  217. Crowbar.MouseButton1Down:connect(function()
  218.     local A_1 = "Crowbar"
  219.     local Event = game:GetService("ReplicatedStorage").Remotes.giveItemEvent
  220.     Event:FireServer(A_1)
  221. end)
  222.  
  223. UICorner_11.Parent = Crowbar
  224.  
  225. Water.Name = "Water"
  226. Water.Parent = Gui
  227. Water.BackgroundColor3 = Color3.new(0.541176, 0.929412, 0.992157)
  228. Water.Position = UDim2.new(0.0777777806, 0, 0.812720239, 0)
  229. Water.Size = UDim2.new(0, 75, 0, 23)
  230. Water.Font = Enum.Font.RobotoCondensed
  231. Water.Text = "WaterGun"
  232. Water.TextColor3 = Color3.new(0, 0, 0)
  233. Water.TextSize = 14
  234. Water.MouseButton1Down:connect(function()
  235.     local A_1 = "WaterGun"
  236.     local Event = game:GetService("ReplicatedStorage").Remotes.giveItemEvent
  237.     Event:FireServer(A_1)
  238. end)
  239.  
  240. UICorner_12.Parent = Water
  241.  
  242. Cookie.Name = "Cookie"
  243. Cookie.Parent = Gui
  244. Cookie.BackgroundColor3 = Color3.new(0.541176, 0.929412, 0.992157)
  245. Cookie.Position = UDim2.new(0.0777777806, 0, 0.880719781, 0)
  246. Cookie.Size = UDim2.new(0, 75, 0, 23)
  247. Cookie.Font = Enum.Font.RobotoCondensed
  248. Cookie.Text = "GiantCookie"
  249. Cookie.TextColor3 = Color3.new(0, 0, 0)
  250. Cookie.TextSize = 14
  251. Cookie.MouseButton1Down:connect(function()
  252.     local A_1 = "GiantCookie"
  253.     local Event = game:GetService("ReplicatedStorage").Remotes.giveItemEvent
  254.     Event:FireServer(A_1)
  255. end)
  256.  
  257. UICorner_13.Parent = Cookie
  258.  
  259. Crowbar_2.Name = "Crowbar"
  260. Crowbar_2.Parent = Gui
  261. Crowbar_2.BackgroundColor3 = Color3.new(0.541176, 0.929412, 0.992157)
  262. Crowbar_2.Position = UDim2.new(0.0777777806, 0, 0.951700985, 0)
  263. Crowbar_2.Size = UDim2.new(0, 75, 0, 23)
  264. Crowbar_2.Font = Enum.Font.RobotoCondensed
  265. Crowbar_2.Text = "Pirate Sword"
  266. Crowbar_2.TextColor3 = Color3.new(0, 0, 0)
  267. Crowbar_2.TextSize = 14
  268. Crowbar_2.MouseButton1Down:connect(function()
  269.     local A_1 = "Pirate Sword"
  270.     local Event = game:GetService("ReplicatedStorage").Remotes.giveItemEvent
  271.     Event:FireServer(A_1)
  272. end)
  273.  
  274.  
  275. UICorner_14.Parent = Crowbar_2
  276.  
  277. Flashlight.Name = "Flashlight"
  278. Flashlight.Parent = Gui
  279. Flashlight.BackgroundColor3 = Color3.new(0.541176, 0.929412, 0.992157)
  280. Flashlight.Position = UDim2.new(0.0777777806, 0, 0.740593135, 0)
  281. Flashlight.Size = UDim2.new(0, 75, 0, 23)
  282. Flashlight.Font = Enum.Font.RobotoCondensed
  283. Flashlight.Text = "Flashlight"
  284. Flashlight.TextColor3 = Color3.new(0, 0, 0)
  285. Flashlight.TextSize = 14
  286. Flashlight.MouseButton1Down:connect(function()
  287.     local A_1 = "Flashlight"
  288.     local Event = game:GetService("ReplicatedStorage").Remotes.giveItemEvent
  289.     Event:FireServer(A_1)
  290. end)
  291.  
  292.  
  293. UICorner_15.Parent = Flashlight
  294.  
  295. --Gui 2--
  296. -- Instances
  297.  
  298. local ScreenGui = Instance.new("ScreenGui")
  299. local Gui = Instance.new("Frame")
  300. local UICorner = Instance.new("UICorner")
  301. local Name = Instance.new("TextLabel")
  302. local UICorner_2 = Instance.new("UICorner")
  303. local Functions = Instance.new("TextLabel")
  304. local UICorner_3 = Instance.new("UICorner")
  305. local Heal = Instance.new("TextButton")
  306. local UICorner_4 = Instance.new("UICorner")
  307. local Pirate = Instance.new("TextButton")
  308. local UICorner_5 = Instance.new("UICorner")
  309. local Revive = Instance.new("TextButton")
  310. local UICorner_6 = Instance.new("UICorner")
  311. local cash = Instance.new("TextButton")
  312. local UICorner_7 = Instance.new("UICorner")
  313. local Badge = Instance.new("TextButton")
  314. local UICorner_8 = Instance.new("UICorner")
  315.  
  316. -- Properties
  317.  
  318. ScreenGui.Parent = game.CoreGui
  319.  
  320. Gui.Name = "Gui"
  321. Gui.Parent = ScreenGui
  322. Gui.BackgroundColor3 = Color3.new(0.0705882, 0.686275, 0.784314)
  323. Gui.Position = UDim2.new(0.841125131, 0, 0.0198473856, 0)
  324. Gui.Size = UDim2.new(0, 90, 0, 255)
  325. Gui.Active = true
  326. Gui.Draggable = true
  327.  
  328. UICorner.Parent = Gui
  329.  
  330. Name.Name = "Name"
  331. Name.Parent = Gui
  332. Name.BackgroundColor3 = Color3.new(0.541176, 0.929412, 0.992157)
  333. Name.Position = UDim2.new(-0.0128526473, 0, -0.00203833496, 0)
  334. Name.Size = UDim2.new(0, 91, 0, 50)
  335. Name.Font = Enum.Font.RobotoCondensed
  336. Name.Text = "Cruise [Story]"
  337. Name.TextColor3 = Color3.new(0, 0, 0)
  338. Name.TextSize = 17
  339.  
  340. UICorner_2.Parent = Name
  341.  
  342. Functions.Name = "Functions"
  343. Functions.Parent = Gui
  344. Functions.BackgroundColor3 = Color3.new(0.541176, 0.929412, 0.992157)
  345. Functions.Position = UDim2.new(-0.00190565363, 0, 0.229944795, 0)
  346. Functions.Size = UDim2.new(0, 90, 0, 17)
  347. Functions.Font = Enum.Font.RobotoCondensed
  348. Functions.Text = "Functions"
  349. Functions.TextColor3 = Color3.new(0, 0, 0)
  350. Functions.TextSize = 14
  351.  
  352. UICorner_3.Parent = Functions
  353.  
  354. Heal.Name = "Heal"
  355. Heal.Parent = Gui
  356. Heal.BackgroundColor3 = Color3.new(0.541176, 0.929412, 0.992157)
  357. Heal.Position = UDim2.new(0.0777777806, 0, 0.348011196, 0)
  358. Heal.Size = UDim2.new(0, 75, 0, 23)
  359. Heal.Font = Enum.Font.RobotoCondensed
  360. Heal.Text = "Heal Yourself"
  361. Heal.TextColor3 = Color3.new(0, 0, 0)
  362. Heal.TextSize = 14
  363. Heal.MouseButton1Down:connect(function()
  364.     local A_1 = 100
  365.     local Event = game:GetService("ReplicatedStorage").Remotes.healPlayerEvent
  366.     Event:FireServer(A_1)
  367. end)
  368.  
  369. UICorner_4.Parent = Heal
  370.  
  371. Pirate.Name = "Pirate"
  372. Pirate.Parent = Gui
  373. Pirate.BackgroundColor3 = Color3.new(0.541176, 0.929412, 0.992157)
  374. Pirate.Position = UDim2.new(0.0777777806, 0, 0.473591626, 0)
  375. Pirate.Size = UDim2.new(0, 75, 0, 23)
  376. Pirate.Font = Enum.Font.RobotoCondensed
  377. Pirate.Text = "Be a Pirate"
  378. Pirate.TextColor3 = Color3.new(0, 0, 0)
  379. Pirate.TextSize = 14
  380. Pirate.MouseButton1Down:connect(function()
  381. game:GetService("ReplicatedStorage").Remotes.beThePirateEvent:FireServer()
  382. end)
  383.  
  384. UICorner_5.Parent = Pirate
  385.  
  386. Revive.Name = "Revive"
  387. Revive.Parent = Gui
  388. Revive.BackgroundColor3 = Color3.new(0.541176, 0.929412, 0.992157)
  389. Revive.Position = UDim2.new(0.0777777806, 0, 0.611008763, 0)
  390. Revive.Size = UDim2.new(0, 75, 0, 23)
  391. Revive.Font = Enum.Font.RobotoCondensed
  392. Revive.Text = "Revive Yourself"
  393. Revive.TextColor3 = Color3.new(0, 0, 0)
  394. Revive.TextSize = 14
  395. Revive.MouseButton1Down:connect(function()
  396.     game:GetService("ReplicatedStorage").Remotes.reviveEvent:FireServer()
  397. end)
  398.  
  399. UICorner_6.Parent = Revive
  400.  
  401. cash.Name = "cash"
  402. cash.Parent = Gui
  403. cash.BackgroundColor3 = Color3.new(0.541176, 0.929412, 0.992157)
  404. cash.Position = UDim2.new(0.0777777806, 0, 0.73876822, 0)
  405. cash.Size = UDim2.new(0, 75, 0, 23)
  406. cash.Font = Enum.Font.RobotoCondensed
  407. cash.Text = "100k cash"
  408. cash.TextColor3 = Color3.new(0, 0, 0)
  409. cash.TextSize = 14
  410. cash.MouseButton1Down:connect(function()
  411.     local A_1 = 100000
  412.     local Event = game:GetService("ReplicatedStorage").Remotes.giveCashEvent
  413.     Event:FireServer(A_1)
  414. end)
  415.  
  416. UICorner_7.Parent = cash
  417.  
  418. Badge.Name = "Badge"
  419. Badge.Parent = Gui
  420. Badge.BackgroundColor3 = Color3.new(0.541176, 0.929412, 0.992157)
  421. Badge.Position = UDim2.new(0.0777777806, 0, 0.876023114, 0)
  422. Badge.Size = UDim2.new(0, 75, 0, 23)
  423. Badge.Font = Enum.Font.RobotoCondensed
  424. Badge.Text = "Dog Badge"
  425. Badge.TextColor3 = Color3.new(0, 0, 0)
  426. Badge.TextSize = 14
  427. Badge.MouseButton1Down:connect(function()
  428.     local Event = game:GetService("ReplicatedStorage").Remotes.dogTreatEvent
  429.     Event:FireServer()
  430. end)
  431.  
  432. UICorner_8.Parent = Badge
  433.  
  434. --Gui 3--
  435. -- Instances
  436.  
  437. local ScreenGui = Instance.new("ScreenGui")
  438. local Gui = Instance.new("Frame")
  439. local UICorner = Instance.new("UICorner")
  440. local Name = Instance.new("TextLabel")
  441. local UICorner_2 = Instance.new("UICorner")
  442. local Others = Instance.new("TextLabel")
  443. local UICorner_3 = Instance.new("UICorner")
  444. local Infinte = Instance.new("TextButton")
  445. local UICorner_4 = Instance.new("UICorner")
  446. local Noclip = Instance.new("TextButton")
  447. local UICorner_5 = Instance.new("UICorner")
  448. local Yield = Instance.new("TextButton")
  449. local UICorner_6 = Instance.new("UICorner")
  450. local Tool = Instance.new("TextButton")
  451. local UICorner_7 = Instance.new("UICorner")
  452.  
  453. -- Properties
  454.  
  455. ScreenGui.Parent = game.CoreGui
  456.  
  457. Gui.Name = "Gui"
  458. Gui.Parent = ScreenGui
  459. Gui.BackgroundColor3 = Color3.new(0.0705882, 0.686275, 0.784314)
  460. Gui.Position = UDim2.new(0.767088771, 0, 0.0198628157, 0)
  461. Gui.Size = UDim2.new(0, 90, 0, 223)
  462. Gui.Active = true
  463. Gui.Draggable = true
  464.  
  465. UICorner.Parent = Gui
  466.  
  467. Name.Name = "Name"
  468. Name.Parent = Gui
  469. Name.BackgroundColor3 = Color3.new(0.541176, 0.929412, 0.992157)
  470. Name.Position = UDim2.new(-0.00190565316, 0, -0.00203831424, 0)
  471. Name.Size = UDim2.new(0, 90, 0, 50)
  472. Name.Font = Enum.Font.RobotoCondensed
  473. Name.Text = "Cruise [Story]"
  474. Name.TextColor3 = Color3.new(0, 0, 0)
  475. Name.TextSize = 17
  476.  
  477. UICorner_2.Parent = Name
  478.  
  479. Others.Name = "Others"
  480. Others.Parent = Gui
  481. Others.BackgroundColor3 = Color3.new(0.541176, 0.929412, 0.992157)
  482. Others.Position = UDim2.new(-0.00190565363, 0, 0.261317343, 0)
  483. Others.Size = UDim2.new(0, 90, 0, 17)
  484. Others.Font = Enum.Font.RobotoCondensed
  485. Others.Text = "Others"
  486. Others.TextColor3 = Color3.new(0, 0, 0)
  487. Others.TextSize = 14
  488.  
  489. UICorner_3.Parent = Others
  490.  
  491. Infinte.Name = "Infinte "
  492. Infinte.Parent = Gui
  493. Infinte.BackgroundColor3 = Color3.new(0.541176, 0.929412, 0.992157)
  494. Infinte.Position = UDim2.new(0.0777777806, 0, 0.394507289, 0)
  495. Infinte.Size = UDim2.new(0, 75, 0, 23)
  496. Infinte.Font = Enum.Font.RobotoCondensed
  497. Infinte.Text = "Infinte Jump"
  498. Infinte.TextColor3 = Color3.new(0, 0, 0)
  499. Infinte.TextSize = 14
  500. Infinte.MouseButton1Down:connect(function()
  501.     game:GetService("UserInputService").JumpRequest:connect(function()
  502.         game:GetService"Players".LocalPlayer.Character:FindFirstChildOfClass'Humanoid':ChangeState("Jumping")      
  503.     end)
  504. end)
  505.  
  506. UICorner_4.Parent = Infinte
  507.  
  508. Noclip.Name = "Noclip "
  509. Noclip.Parent = Gui
  510. Noclip.BackgroundColor3 = Color3.new(0.541176, 0.929412, 0.992157)
  511. Noclip.Position = UDim2.new(0.0777777806, 0, 0.540258288, 0)
  512. Noclip.Size = UDim2.new(0, 75, 0, 23)
  513. Noclip.Font = Enum.Font.RobotoCondensed
  514. Noclip.Text = "Noclip (E)"
  515. Noclip.TextColor3 = Color3.new(0, 0, 0)
  516. Noclip.TextSize = 14
  517. Noclip.MouseButton1Down:connect(function()
  518.     noclip = false
  519.     game:GetService('RunService').Stepped:connect(function()
  520.         if noclip then
  521.             game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
  522.         end
  523.     end)
  524.     plr = game.Players.LocalPlayer
  525.     mouse = plr:GetMouse()
  526.     mouse.KeyDown:connect(function(key)
  527.  
  528.         if key == "e" then
  529.             noclip = not noclip
  530.             game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
  531.         end
  532.     end)
  533. end)
  534.  
  535. UICorner_5.Parent = Noclip
  536.  
  537. Yield.Name = "Yield"
  538. Yield.Parent = Gui
  539. Yield.BackgroundColor3 = Color3.new(0.541176, 0.929412, 0.992157)
  540. Yield.Position = UDim2.new(0.0666666701, 0, 0.69897145, 0)
  541. Yield.Size = UDim2.new(0, 75, 0, 23)
  542. Yield.Font = Enum.Font.RobotoCondensed
  543. Yield.Text = "Infinte Yield"
  544. Yield.TextColor3 = Color3.new(0, 0, 0)
  545. Yield.TextSize = 14
  546. Yield.MouseButton1Down:connect(function()
  547.     loadstring(game:HttpGet('https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source'))()
  548. end)
  549.  
  550. UICorner_6.Parent = Yield
  551.  
  552. Tool.Name = "Tool"
  553. Tool.Parent = Gui
  554. Tool.BackgroundColor3 = Color3.new(0.541176, 0.929412, 0.992157)
  555. Tool.Position = UDim2.new(0.0777777806, 0, 0.840728998, 0)
  556. Tool.Size = UDim2.new(0, 75, 0, 23)
  557. Tool.Font = Enum.Font.RobotoCondensed
  558. Tool.Text = "Delete Tool"
  559. Tool.TextColor3 = Color3.new(0, 0, 0)
  560. Tool.TextSize = 14
  561. Tool.MouseButton1Down:connect(function()
  562.     local a=Instance.new("Tool")a.RequiresHandle=false;a.Name="Delete"local b=game.Players.LocalPlayer;a.Parent=b:WaitForChild("Backpack")local c=b:GetMouse()local d=false;local e=Instance.new("SelectionBox")e.Color3=Color3.new(0,0.6,0.6,6)e.Parent=b.PlayerGui;local c=b:GetMouse()local e=Instance.new("SelectionBox")e.Color3=Color3.new(0,0.6,0.6,6)e.Parent=b.PlayerGui;e.Name="derp"c.Move:connect(function()if d then local f=c.Target;if not f then e.Adornee=nil else if f:IsA("BasePart")then e.Adornee=f else e.Adornee=nil end end end end)a.Equipped:Connect(function()d=true end)a.Unequipped:Connect(function()e.Adornee=nil;d=false end)a.Activated:Connect(function()if e.Adornee then local g=Instance.new("Explosion")g.Parent=game.Workspace;g.Position=e.Adornee.Position;g.BlastPressure=0;local h=Instance.new("Sound")h.SoundId="http://www.roblox.com/asset/?id=315775189"h.Parent=game.Workspace;h:Play()e.Adornee:Destroy()e.Adornee=nil end end)
  563. end)
  564.  
  565. UICorner_7.Parent = Tool
Add Comment
Please, Sign In to add comment