fufunny1

Ice Cream Sim Gui script best yet

Oct 29th, 2018
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 40.96 KB | None | 0 0
  1. local Visible = true
  2. local AutoObbyActive = false
  3. local AutoFlavorsToggled = false
  4. local AutoConeToggled = false
  5. local AutoCashToggled = false
  6. local AutoPetsToggled = false
  7. local AutoTokensToggled = false
  8. local AutoRebirthToggled = false
  9. local SuperSpeedToggled = false
  10. local SellAnywhereToggled = false
  11. local RapidEatToggled = false
  12.  
  13.  
  14. local player = game.Players.LocalPlayer
  15. local MainArea = game.Workspace["Main Area"]
  16. local HalloweenArea = game.Workspace["Halloween Area"]
  17. local ChocoCastle = game.Workspace:FindFirstChild("Choco Castle")
  18. local IceCreamTruck = MainArea["Ice Cream Truck"]
  19. local StartPosition = IceCreamTruck.Enter.CFrame
  20. local StartPosition2 = ChocoCastle.Sell.Sell.CFrame
  21. local Character = player.Character
  22. local Backpack = player.Backpack
  23. local Tokens = MainArea.Tokens:GetChildren()
  24. local Tokens2 = HalloweenArea.Tokens:GetChildren()
  25. local Coins = MainArea.Coins:GetChildren()
  26. local PlayerGui = player.PlayerGui
  27. local ShopGui = PlayerGui.ShopGui
  28. local FlavorShop = ShopGui.FlavorShop.Frame:GetChildren()
  29. local ConeShop = ShopGui.ConeShop.Frame:GetChildren()
  30. local PetShop = ShopGui.PetShop.Frame:GetChildren()
  31.  
  32. local AmountOfPets = #PetShop - 1
  33. local AmountOfFlavors = #FlavorShop - 1
  34. local AmountOfCones = #ConeShop - 1
  35.  
  36. local IceCreamSimulatorGUI = Instance.new("ScreenGui")
  37. local Open = Instance.new("ImageButton")
  38. local BorderPixel = Instance.new("ImageButton")
  39. local OpenText = Instance.new("TextLabel")
  40. local Main = Instance.new("ImageLabel")
  41. local Border = Instance.new("ImageLabel")
  42. local RapidEat = Instance.new("ImageButton")
  43. local RapidEatButton = Instance.new("ImageButton")
  44. local RapidEatEnabledText = Instance.new("TextLabel")
  45. local RapidEatText = Instance.new("TextLabel")
  46. local SellAnywhere = Instance.new("ImageButton")
  47. local SellAnywhereButton = Instance.new("ImageButton")
  48. local SellAnywhereEnabledText = Instance.new("TextLabel")
  49. local SellAnywhereText = Instance.new("TextLabel")
  50. local SuperSpeed = Instance.new("ImageButton")
  51. local SuperSpeedButton = Instance.new("ImageButton")
  52. local SuperSpeedEnabledText = Instance.new("TextLabel")
  53. local SuperSpeedText = Instance.new("TextLabel")
  54. local AutoRebirth = Instance.new("ImageButton")
  55. local AutoRebirthButton = Instance.new("ImageButton")
  56. local AutoRebirthEnabledText = Instance.new("TextLabel")
  57. local AutoRebirthText = Instance.new("TextLabel")
  58. local AutoTokens = Instance.new("ImageButton")
  59. local AutoTokensButton = Instance.new("ImageButton")
  60. local AutoTokensEnabledText = Instance.new("TextLabel")
  61. local AutoTokensText = Instance.new("TextLabel")
  62. local AutoPets = Instance.new("ImageButton")
  63. local AutoPetsButton = Instance.new("ImageButton")
  64. local AutoPetsEnabledText = Instance.new("TextLabel")
  65. local AutoPetsText = Instance.new("TextLabel")
  66. local AutoCash = Instance.new("ImageButton")
  67. local AutoCashButton = Instance.new("ImageButton")
  68. local AutoCashEnabledText = Instance.new("TextLabel")
  69. local AutoCashText = Instance.new("TextLabel")
  70. local AutoCone = Instance.new("ImageButton")
  71. local AutoConeButton = Instance.new("ImageButton")
  72. local AutoConeEnabledText = Instance.new("TextLabel")
  73. local AutoConeText = Instance.new("TextLabel")
  74. local AutoFlavors = Instance.new("ImageButton")
  75. local AutoFlavorsButton = Instance.new("ImageButton")
  76. local AutoFlavorsEnabledText = Instance.new("TextLabel")
  77. local AutoFlavorsText = Instance.new("TextLabel")
  78. local AutoObby = Instance.new("ImageButton")
  79. local AutoObbyButton = Instance.new("ImageButton")
  80. local AutoObbyEnabledText = Instance.new("TextLabel")
  81. local AutoObbyText = Instance.new("TextLabel")
  82. local Teleport = Instance.new("ImageButton")
  83. local TeleportButtonText = Instance.new("TextLabel")
  84. local TeleportText = Instance.new("TextLabel")
  85. local TeleportButton = Instance.new("ImageButton")
  86. local TeleportNumber = Instance.new("ImageButton")
  87. local BorderPixel = Instance.new("ImageButton")
  88. local TeleportNumberText = Instance.new("TextBox")
  89. local Close = Instance.new("ImageButton")
  90. local CloseButton = Instance.new("ImageButton")
  91. local CloseButtonText = Instance.new("TextLabel")
  92. local TextLabel = Instance.new("TextLabel")
  93. local TextLabel_2 = Instance.new("TextLabel")
  94.  
  95. IceCreamSimulatorGUI.Name = "Ice Cream Simulator GUI"
  96. IceCreamSimulatorGUI.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  97.  
  98. Main.Name = "Main"
  99. Main.Parent = IceCreamSimulatorGUI
  100. Main.BackgroundTransparency = 1
  101. Main.BorderSizePixel = 0
  102. Main.Position = UDim2.new(0.5, 0, 0.425000012, 0)
  103. Main.Size = UDim2.new(0, 431, 0, 209)
  104. Main.ZIndex = 3
  105. Main.Draggable = true
  106. Main.Active = true
  107. Main.Image = "rbxassetid://1283904632"
  108. Main.ScaleType = Enum.ScaleType.Slice
  109. Main.SliceCenter = Rect.new(22, 22, 234, 234)
  110.  
  111. Border.Name = "Border"
  112. Border.Parent = Main
  113. Border.AnchorPoint = Vector2.new(0.5, 0.5)
  114. Border.BackgroundTransparency = 1
  115. Border.BorderSizePixel = 0
  116. Border.Position = UDim2.new(0.5, 0, 0.5, 0)
  117. Border.Size = UDim2.new(1, 16, 1, 16)
  118. Border.ZIndex = 2
  119. Border.Image = "rbxassetid://1283904632"
  120. Border.ImageColor3 = Color3.new(0.105882, 0.164706, 0.207843)
  121. Border.ScaleType = Enum.ScaleType.Slice
  122. Border.SliceCenter = Rect.new(22, 22, 234, 234)
  123.  
  124. RapidEat.Name = "RapidEat"
  125. RapidEat.Parent = Main
  126. RapidEat.BackgroundColor3 = Color3.new(0.647059, 0.333333, 0.0745098)
  127. RapidEat.BackgroundTransparency = 1
  128. RapidEat.BorderSizePixel = 0
  129. RapidEat.Position = UDim2.new(0.0299999993, 0, 0.100000001, 0)
  130. RapidEat.Size = UDim2.new(0, 118, 0, 27)
  131. RapidEat.ZIndex = 5
  132. RapidEat.Image = "rbxassetid://1285673399"
  133. RapidEat.ImageColor3 = Color3.new(1, 0.368627, 0.0745098)
  134. RapidEat.ScaleType = Enum.ScaleType.Slice
  135. RapidEat.SliceCenter = Rect.new(8, 8, 247, 247)
  136.  
  137. RapidEatButton.Name = "RapidEatButton"
  138. RapidEatButton.Parent = RapidEat
  139. RapidEatButton.AnchorPoint = Vector2.new(0.5, 0.5)
  140. RapidEatButton.BackgroundTransparency = 1
  141. RapidEatButton.BorderSizePixel = 0
  142. RapidEatButton.Position = UDim2.new(0.5, 0, 0.5, 0)
  143. RapidEatButton.Size = UDim2.new(1, 2, 1, 2)
  144. RapidEatButton.ZIndex = 3
  145. RapidEatButton.Image = "rbxassetid://1285673399"
  146. RapidEatButton.ImageColor3 = Color3.new(0.105882, 0.164706, 0.207843)
  147. RapidEatButton.ScaleType = Enum.ScaleType.Slice
  148. RapidEatButton.SliceCenter = Rect.new(8, 8, 247, 247)
  149.  
  150. RapidEatEnabledText.Name = "RapidEatEnabledText"
  151. RapidEatEnabledText.Parent = RapidEat
  152. RapidEatEnabledText.BackgroundColor3 = Color3.new(1, 1, 1)
  153. RapidEatEnabledText.BackgroundTransparency = 1
  154. RapidEatEnabledText.BorderSizePixel = 0
  155. RapidEatEnabledText.Position = UDim2.new(0.00847458839, 0, 0.0370370448, 0)
  156. RapidEatEnabledText.Size = UDim2.new(0, 118, 0, 27)
  157. RapidEatEnabledText.ZIndex = 5
  158. RapidEatEnabledText.Font = Enum.Font.SciFi
  159. RapidEatEnabledText.Text = "DISABLED"
  160. RapidEatEnabledText.TextColor3 = Color3.new(0, 0, 0)
  161. RapidEatEnabledText.TextSize = 14
  162. RapidEatEnabledText.TextWrapped = true
  163.  
  164. RapidEatText.Name = "RapidEatText"
  165. RapidEatText.Parent = RapidEat
  166. RapidEatText.BackgroundColor3 = Color3.new(1, 1, 1)
  167. RapidEatText.BackgroundTransparency = 1
  168. RapidEatText.BorderSizePixel = 0
  169. RapidEatText.Position = UDim2.new(0.00847458839, 0, -0.962962985, 0)
  170. RapidEatText.Size = UDim2.new(0, 118, 0, 27)
  171. RapidEatText.ZIndex = 5
  172. RapidEatText.Font = Enum.Font.SciFi
  173. RapidEatText.Text = "Rapid Eat"
  174. RapidEatText.TextColor3 = Color3.new(0, 0, 0)
  175. RapidEatText.TextSize = 17
  176. RapidEatText.TextWrapped = true
  177.  
  178. SellAnywhere.Name = "SellAnywhere"
  179. SellAnywhere.Parent = Main
  180. SellAnywhere.BackgroundColor3 = Color3.new(0.647059, 0.333333, 0.0745098)
  181. SellAnywhere.BackgroundTransparency = 1
  182. SellAnywhere.BorderSizePixel = 0
  183. SellAnywhere.Position = UDim2.new(0.0299999993, 0, 0.349999994, 0)
  184. SellAnywhere.Size = UDim2.new(0, 118, 0, 27)
  185. SellAnywhere.ZIndex = 5
  186. SellAnywhere.Image = "rbxassetid://1285673399"
  187. SellAnywhere.ImageColor3 = Color3.new(1, 0.368627, 0.0745098)
  188. SellAnywhere.ScaleType = Enum.ScaleType.Slice
  189. SellAnywhere.SliceCenter = Rect.new(8, 8, 247, 247)
  190.  
  191. SellAnywhereButton.Name = "SellAnywhereButton"
  192. SellAnywhereButton.Parent = SellAnywhere
  193. SellAnywhereButton.AnchorPoint = Vector2.new(0.5, 0.5)
  194. SellAnywhereButton.BackgroundTransparency = 1
  195. SellAnywhereButton.BorderSizePixel = 0
  196. SellAnywhereButton.Position = UDim2.new(0.5, 0, 0.5, 0)
  197. SellAnywhereButton.Size = UDim2.new(1, 2, 1, 2)
  198. SellAnywhereButton.ZIndex = 3
  199. SellAnywhereButton.Image = "rbxassetid://1285673399"
  200. SellAnywhereButton.ImageColor3 = Color3.new(0.105882, 0.164706, 0.207843)
  201. SellAnywhereButton.ScaleType = Enum.ScaleType.Slice
  202. SellAnywhereButton.SliceCenter = Rect.new(8, 8, 247, 247)
  203.  
  204. SellAnywhereEnabledText.Name = "SellAnywhereEnabledText"
  205. SellAnywhereEnabledText.Parent = SellAnywhere
  206. SellAnywhereEnabledText.BackgroundColor3 = Color3.new(1, 1, 1)
  207. SellAnywhereEnabledText.BackgroundTransparency = 1
  208. SellAnywhereEnabledText.BorderSizePixel = 0
  209. SellAnywhereEnabledText.Position = UDim2.new(1.21071935e-08, 0, 0.0370371342, 0)
  210. SellAnywhereEnabledText.Size = UDim2.new(0, 118, 0, 27)
  211. SellAnywhereEnabledText.ZIndex = 5
  212. SellAnywhereEnabledText.Font = Enum.Font.SciFi
  213. SellAnywhereEnabledText.Text = "DISABLED"
  214. SellAnywhereEnabledText.TextColor3 = Color3.new(0, 0, 0)
  215. SellAnywhereEnabledText.TextSize = 14
  216. SellAnywhereEnabledText.TextWrapped = true
  217.  
  218. SellAnywhereText.Name = "SellAnywhereText"
  219. SellAnywhereText.Parent = SellAnywhere
  220. SellAnywhereText.BackgroundColor3 = Color3.new(1, 1, 1)
  221. SellAnywhereText.BackgroundTransparency = 1
  222. SellAnywhereText.BorderSizePixel = 0
  223. SellAnywhereText.Position = UDim2.new(0.00847458839, 0, -0.962962985, 0)
  224. SellAnywhereText.Size = UDim2.new(0, 118, 0, 27)
  225. SellAnywhereText.ZIndex = 5
  226. SellAnywhereText.Font = Enum.Font.SciFi
  227. SellAnywhereText.Text = "Sell Anywhere"
  228. SellAnywhereText.TextColor3 = Color3.new(0, 0, 0)
  229. SellAnywhereText.TextSize = 17
  230. SellAnywhereText.TextWrapped = true
  231.  
  232. SuperSpeed.Name = "SuperSpeed"
  233. SuperSpeed.Parent = Main
  234. SuperSpeed.BackgroundColor3 = Color3.new(0.647059, 0.333333, 0.0745098)
  235. SuperSpeed.BackgroundTransparency = 1
  236. SuperSpeed.BorderSizePixel = 0
  237. SuperSpeed.Position = UDim2.new(0.0299999993, 0, 0.600000024, 0)
  238. SuperSpeed.Size = UDim2.new(0, 118, 0, 27)
  239. SuperSpeed.ZIndex = 5
  240. SuperSpeed.Image = "rbxassetid://1285673399"
  241. SuperSpeed.ImageColor3 = Color3.new(1, 0.368627, 0.0745098)
  242. SuperSpeed.ScaleType = Enum.ScaleType.Slice
  243. SuperSpeed.SliceCenter = Rect.new(8, 8, 247, 247)
  244.  
  245. SuperSpeedButton.Name = "SuperSpeedButton"
  246. SuperSpeedButton.Parent = SuperSpeed
  247. SuperSpeedButton.AnchorPoint = Vector2.new(0.5, 0.5)
  248. SuperSpeedButton.BackgroundTransparency = 1
  249. SuperSpeedButton.BorderSizePixel = 0
  250. SuperSpeedButton.Position = UDim2.new(0.5, 0, 0.5, 0)
  251. SuperSpeedButton.Size = UDim2.new(1, 2, 1, 2)
  252. SuperSpeedButton.ZIndex = 3
  253. SuperSpeedButton.Image = "rbxassetid://1285673399"
  254. SuperSpeedButton.ImageColor3 = Color3.new(0.105882, 0.164706, 0.207843)
  255. SuperSpeedButton.ScaleType = Enum.ScaleType.Slice
  256. SuperSpeedButton.SliceCenter = Rect.new(8, 8, 247, 247)
  257.  
  258. SuperSpeedEnabledText.Name = "SuperSpeedEnabledText"
  259. SuperSpeedEnabledText.Parent = SuperSpeed
  260. SuperSpeedEnabledText.BackgroundColor3 = Color3.new(1, 1, 1)
  261. SuperSpeedEnabledText.BackgroundTransparency = 1
  262. SuperSpeedEnabledText.BorderSizePixel = 0
  263. SuperSpeedEnabledText.Position = UDim2.new(1.21071935e-08, 0, 0.0370371342, 0)
  264. SuperSpeedEnabledText.Size = UDim2.new(0, 118, 0, 27)
  265. SuperSpeedEnabledText.ZIndex = 5
  266. SuperSpeedEnabledText.Font = Enum.Font.SciFi
  267. SuperSpeedEnabledText.Text = "DISABLED"
  268. SuperSpeedEnabledText.TextColor3 = Color3.new(0, 0, 0)
  269. SuperSpeedEnabledText.TextSize = 14
  270. SuperSpeedEnabledText.TextWrapped = true
  271.  
  272. SuperSpeedText.Name = "SuperSpeedText"
  273. SuperSpeedText.Parent = SuperSpeed
  274. SuperSpeedText.BackgroundColor3 = Color3.new(1, 1, 1)
  275. SuperSpeedText.BackgroundTransparency = 1
  276. SuperSpeedText.BorderSizePixel = 0
  277. SuperSpeedText.Position = UDim2.new(0.00847458839, 0, -0.962962985, 0)
  278. SuperSpeedText.Size = UDim2.new(0, 118, 0, 27)
  279. SuperSpeedText.ZIndex = 5
  280. SuperSpeedText.Font = Enum.Font.SciFi
  281. SuperSpeedText.Text = "Super Speed"
  282. SuperSpeedText.TextColor3 = Color3.new(0, 0, 0)
  283. SuperSpeedText.TextSize = 17
  284. SuperSpeedText.TextWrapped = true
  285.  
  286. AutoRebirth.Name = "AutoRebirth"
  287. AutoRebirth.Parent = Main
  288. AutoRebirth.BackgroundColor3 = Color3.new(0.647059, 0.333333, 0.0745098)
  289. AutoRebirth.BackgroundTransparency = 1
  290. AutoRebirth.BorderSizePixel = 0
  291. AutoRebirth.Position = UDim2.new(0.0299999993, 0, 0.850000024, 0)
  292. AutoRebirth.Size = UDim2.new(0, 118, 0, 27)
  293. AutoRebirth.ZIndex = 5
  294. AutoRebirth.Image = "rbxassetid://1285673399"
  295. AutoRebirth.ImageColor3 = Color3.new(1, 0.368627, 0.0745098)
  296. AutoRebirth.ScaleType = Enum.ScaleType.Slice
  297. AutoRebirth.SliceCenter = Rect.new(8, 8, 247, 247)
  298.  
  299. AutoRebirthButton.Name = "AutoRebirthButton"
  300. AutoRebirthButton.Parent = AutoRebirth
  301. AutoRebirthButton.AnchorPoint = Vector2.new(0.5, 0.5)
  302. AutoRebirthButton.BackgroundTransparency = 1
  303. AutoRebirthButton.BorderSizePixel = 0
  304. AutoRebirthButton.Position = UDim2.new(0.5, 0, 0.5, 0)
  305. AutoRebirthButton.Size = UDim2.new(1, 2, 1, 2)
  306. AutoRebirthButton.ZIndex = 3
  307. AutoRebirthButton.Image = "rbxassetid://1285673399"
  308. AutoRebirthButton.ImageColor3 = Color3.new(0.105882, 0.164706, 0.207843)
  309. AutoRebirthButton.ScaleType = Enum.ScaleType.Slice
  310. AutoRebirthButton.SliceCenter = Rect.new(8, 8, 247, 247)
  311.  
  312. AutoRebirthEnabledText.Name = "AutoRebirthEnabledText"
  313. AutoRebirthEnabledText.Parent = AutoRebirth
  314. AutoRebirthEnabledText.BackgroundColor3 = Color3.new(1, 1, 1)
  315. AutoRebirthEnabledText.BackgroundTransparency = 1
  316. AutoRebirthEnabledText.BorderSizePixel = 0
  317. AutoRebirthEnabledText.Position = UDim2.new(1.21071935e-08, 0, 0.0370371342, 0)
  318. AutoRebirthEnabledText.Size = UDim2.new(0, 118, 0, 27)
  319. AutoRebirthEnabledText.ZIndex = 5
  320. AutoRebirthEnabledText.Font = Enum.Font.SciFi
  321. AutoRebirthEnabledText.Text = "DISABLED"
  322. AutoRebirthEnabledText.TextColor3 = Color3.new(0, 0, 0)
  323. AutoRebirthEnabledText.TextSize = 14
  324. AutoRebirthEnabledText.TextWrapped = true
  325.  
  326. AutoRebirthText.Name = "AutoRebirthText"
  327. AutoRebirthText.Parent = AutoRebirth
  328. AutoRebirthText.BackgroundColor3 = Color3.new(1, 1, 1)
  329. AutoRebirthText.BackgroundTransparency = 1
  330. AutoRebirthText.BorderSizePixel = 0
  331. AutoRebirthText.Position = UDim2.new(0.00847458839, 0, -0.962962985, 0)
  332. AutoRebirthText.Size = UDim2.new(0, 118, 0, 27)
  333. AutoRebirthText.ZIndex = 5
  334. AutoRebirthText.Font = Enum.Font.SciFi
  335. AutoRebirthText.Text = "Auto Rebirth"
  336. AutoRebirthText.TextColor3 = Color3.new(0, 0, 0)
  337. AutoRebirthText.TextSize = 17
  338. AutoRebirthText.TextWrapped = true
  339.  
  340. AutoTokens.Name = "AutoTokens"
  341. AutoTokens.Parent = Main
  342. AutoTokens.BackgroundColor3 = Color3.new(0.647059, 0.333333, 0.0745098)
  343. AutoTokens.BackgroundTransparency = 1
  344. AutoTokens.BorderSizePixel = 0
  345. AutoTokens.Position = UDim2.new(0.360000014, 0, 0.100000001, 0)
  346. AutoTokens.Size = UDim2.new(0, 118, 0, 27)
  347. AutoTokens.ZIndex = 5
  348. AutoTokens.Image = "rbxassetid://1285673399"
  349. AutoTokens.ImageColor3 = Color3.new(1, 0.368627, 0.0745098)
  350. AutoTokens.ScaleType = Enum.ScaleType.Slice
  351. AutoTokens.SliceCenter = Rect.new(8, 8, 247, 247)
  352. AutoTokensButton.Name = ("AutoTokensButton")
  353. AutoTokensButton.Parent = AutoTokens
  354. AutoTokensButton.AnchorPoint = Vector2.new(0.5, 0.5)
  355. AutoTokensButton.BackgroundTransparency = 1
  356. AutoTokensButton.BorderSizePixel = 0
  357. AutoTokensButton.Position = UDim2.new(0.5, 0, 0.5, 0)
  358. AutoTokensButton.Size = UDim2.new(1, 2, 1, 2)
  359. AutoTokensButton.ZIndex = 3
  360. AutoTokensButton.Image = "rbxassetid://1285673399"
  361. AutoTokensButton.ImageColor3 = Color3.new(0.105882, 0.164706, 0.207843)
  362. AutoTokensButton.ScaleType = Enum.ScaleType.Slice
  363. AutoTokensButton.SliceCenter = Rect.new(8, 8, 247, 247)
  364.  
  365. AutoTokensEnabledText.Name = "AutoTokensEnabledText"
  366. AutoTokensEnabledText.Parent = AutoTokens
  367. AutoTokensEnabledText.BackgroundColor3 = Color3.new(1, 1, 1)
  368. AutoTokensEnabledText.BackgroundTransparency = 1
  369. AutoTokensEnabledText.BorderSizePixel = 0
  370. AutoTokensEnabledText.Position = UDim2.new(0.00847458839, 0, 0.0370370448, 0)
  371. AutoTokensEnabledText.Size = UDim2.new(0, 118, 0, 27)
  372. AutoTokensEnabledText.ZIndex = 5
  373. AutoTokensEnabledText.Font = Enum.Font.SciFi
  374. AutoTokensEnabledText.Text = "DISABLED"
  375. AutoTokensEnabledText.TextColor3 = Color3.new(0, 0, 0)
  376. AutoTokensEnabledText.TextSize = 14
  377. AutoTokensEnabledText.TextWrapped = true
  378.  
  379. AutoTokensText.Name = "AutoTokensText"
  380. AutoTokensText.Parent = AutoTokens
  381. AutoTokensText.BackgroundColor3 = Color3.new(1, 1, 1)
  382. AutoTokensText.BackgroundTransparency = 1
  383. AutoTokensText.BorderSizePixel = 0
  384. AutoTokensText.Position = UDim2.new(0.00847458839, 0, -0.962962985, 0)
  385. AutoTokensText.Size = UDim2.new(0, 118, 0, 27)
  386. AutoTokensText.ZIndex = 5
  387. AutoTokensText.Font = Enum.Font.SciFi
  388. AutoTokensText.Text = "Auto Tokens"
  389. AutoTokensText.TextColor3 = Color3.new(0, 0, 0)
  390. AutoTokensText.TextSize = 17
  391. AutoTokensText.TextWrapped = true
  392.  
  393. AutoPets.Name = "AutoPets"
  394. AutoPets.Parent = Main
  395. AutoPets.BackgroundColor3 = Color3.new(0.647059, 0.333333, 0.0745098)
  396. AutoPets.BackgroundTransparency = 1
  397. AutoPets.BorderSizePixel = 0
  398. AutoPets.Position = UDim2.new(0.689999998, 0, 0.100000001, 0)
  399. AutoPets.Size = UDim2.new(0, 118, 0, 27)
  400. AutoPets.ZIndex = 5
  401. AutoPets.Image = "rbxassetid://1285673399"
  402. AutoPets.ImageColor3 = Color3.new(1, 0.368627, 0.0745098)
  403. AutoPets.ScaleType = Enum.ScaleType.Slice
  404. AutoPets.SliceCenter = Rect.new(8, 8, 247, 247)
  405.  
  406. AutoPetsButton.Name = "AutoPetsButton"
  407. AutoPetsButton.Parent = AutoPets
  408. AutoPetsButton.AnchorPoint = Vector2.new(0.5, 0.5)
  409. AutoPetsButton.BackgroundTransparency = 1
  410. AutoPetsButton.BorderSizePixel = 0
  411. AutoPetsButton.Position = UDim2.new(0.5, 0, 0.5, 0)
  412. AutoPetsButton.Size = UDim2.new(1, 2, 1, 2)
  413. AutoPetsButton.ZIndex = 3
  414. AutoPetsButton.Image = "rbxassetid://1285673399"
  415. AutoPetsButton.ImageColor3 = Color3.new(0.105882, 0.164706, 0.207843)
  416. AutoPetsButton.ScaleType = Enum.ScaleType.Slice
  417. AutoPetsButton.SliceCenter = Rect.new(8, 8, 247, 247)
  418.  
  419. AutoPetsEnabledText.Name = "AutoPetsEnabledText"
  420. AutoPetsEnabledText.Parent = AutoPets
  421. AutoPetsEnabledText.BackgroundColor3 = Color3.new(1, 1, 1)
  422. AutoPetsEnabledText.BackgroundTransparency = 1
  423. AutoPetsEnabledText.BorderSizePixel = 0
  424. AutoPetsEnabledText.Position = UDim2.new(0.00847458839, 0, 0.0370370448, 0)
  425. AutoPetsEnabledText.Size = UDim2.new(0, 118, 0, 27)
  426. AutoPetsEnabledText.ZIndex = 5
  427. AutoPetsEnabledText.Font = Enum.Font.SciFi
  428. AutoPetsEnabledText.Text = "DISABLED"
  429. AutoPetsEnabledText.TextColor3 = Color3.new(0, 0, 0)
  430. AutoPetsEnabledText.TextSize = 14
  431. AutoPetsEnabledText.TextWrapped = true
  432.  
  433. AutoPetsText.Name = "AutoPetsText"
  434. AutoPetsText.Parent = AutoPets
  435. AutoPetsText.BackgroundColor3 = Color3.new(1, 1, 1)
  436. AutoPetsText.BackgroundTransparency = 1
  437. AutoPetsText.BorderSizePixel = 0
  438. AutoPetsText.Position = UDim2.new(0.00847458839, 0, -0.962962985, 0)
  439. AutoPetsText.Size = UDim2.new(0, 118, 0, 27)
  440. AutoPetsText.ZIndex = 5
  441. AutoPetsText.Font = Enum.Font.SciFi
  442. AutoPetsText.Text = "Auto Pets"
  443. AutoPetsText.TextColor3 = Color3.new(0, 0, 0)
  444. AutoPetsText.TextSize = 17
  445. AutoPetsText.TextWrapped = true
  446.  
  447. AutoCash.Name = "AutoCash"
  448. AutoCash.Parent = Main
  449. AutoCash.BackgroundColor3 = Color3.new(0.647059, 0.333333, 0.0745098)
  450. AutoCash.BackgroundTransparency = 1
  451. AutoCash.BorderSizePixel = 0
  452. AutoCash.Position = UDim2.new(0.360000014, 0, 0.349999994, 0)
  453. AutoCash.Size = UDim2.new(0, 118, 0, 27)
  454. AutoCash.ZIndex = 5
  455. AutoCash.Image = "rbxassetid://1285673399"
  456. AutoCash.ImageColor3 = Color3.new(1, 0.368627, 0.0745098)
  457. AutoCash.ScaleType = Enum.ScaleType.Slice
  458. AutoCash.SliceCenter = Rect.new(8, 8, 247, 247)
  459.  
  460. AutoCashButton.Name = "AutoCashButton"
  461. AutoCashButton.Parent = AutoCash
  462. AutoCashButton.AnchorPoint = Vector2.new(0.5, 0.5)
  463. AutoCashButton.BackgroundTransparency = 1
  464. AutoCashButton.BorderSizePixel = 0
  465. AutoCashButton.Position = UDim2.new(0.5, 0, 0.5, 0)
  466. AutoCashButton.Size = UDim2.new(1, 2, 1, 2)
  467. AutoCashButton.ZIndex = 3
  468. AutoCashButton.Image = "rbxassetid://1285673399"
  469. AutoCashButton.ImageColor3 = Color3.new(0.105882, 0.164706, 0.207843)
  470. AutoCashButton.ScaleType = Enum.ScaleType.Slice
  471. AutoCashButton.SliceCenter = Rect.new(8, 8, 247, 247)
  472.  
  473. AutoCashEnabledText.Name = "AutoCashEnabledText"
  474. AutoCashEnabledText.Parent = AutoCash
  475. AutoCashEnabledText.BackgroundColor3 = Color3.new(1, 1, 1)
  476. AutoCashEnabledText.BackgroundTransparency = 1
  477. AutoCashEnabledText.BorderSizePixel = 0
  478. AutoCashEnabledText.Position = UDim2.new(0.00847458839, 0, 0.0370370448, 0)
  479. AutoCashEnabledText.Size = UDim2.new(0, 118, 0, 27)
  480. AutoCashEnabledText.ZIndex = 5
  481. AutoCashEnabledText.Font = Enum.Font.SciFi
  482. AutoCashEnabledText.Text = "DISABLED"
  483. AutoCashEnabledText.TextColor3 = Color3.new(0, 0, 0)
  484. AutoCashEnabledText.TextSize = 14
  485. AutoCashEnabledText.TextWrapped = true
  486.  
  487. AutoCashText.Name = "AutoCashText"
  488. AutoCashText.Parent = AutoCash
  489. AutoCashText.BackgroundColor3 = Color3.new(1, 1, 1)
  490. AutoCashText.BackgroundTransparency = 1
  491. AutoCashText.BorderSizePixel = 0
  492. AutoCashText.Position = UDim2.new(0.00847458839, 0, -0.962962985, 0)
  493. AutoCashText.Size = UDim2.new(0, 118, 0, 27)
  494. AutoCashText.ZIndex = 5
  495. AutoCashText.Font = Enum.Font.SciFi
  496. AutoCashText.Text = "Auto Cash"
  497. AutoCashText.TextColor3 = Color3.new(0, 0, 0)
  498. AutoCashText.TextSize = 17
  499. AutoCashText.TextWrapped = true
  500.  
  501. AutoCone.Name = "AutoCone"
  502. AutoCone.Parent = Main
  503. AutoCone.BackgroundColor3 = Color3.new(0.647059, 0.333333, 0.0745098)
  504. AutoCone.BackgroundTransparency = 1
  505. AutoCone.BorderSizePixel = 0
  506. AutoCone.Position = UDim2.new(0.360000014, 0, 0.600000024, 0)
  507. AutoCone.Size = UDim2.new(0, 118, 0, 27)
  508. AutoCone.ZIndex = 5
  509. AutoCone.Image = "rbxassetid://1285673399"
  510. AutoCone.ImageColor3 = Color3.new(1, 0.368627, 0.0745098)
  511. AutoCone.ScaleType = Enum.ScaleType.Slice
  512. AutoCone.SliceCenter = Rect.new(8, 8, 247, 247)
  513.  
  514. AutoConeButton.Name = "AutoConeButton"
  515. AutoConeButton.Parent = AutoCone
  516. AutoConeButton.AnchorPoint = Vector2.new(0.5, 0.5)
  517. AutoConeButton.BackgroundTransparency = 1
  518. AutoConeButton.BorderSizePixel = 0
  519. AutoConeButton.Position = UDim2.new(0.5, 0, 0.5, 0)
  520. AutoConeButton.Size = UDim2.new(1, 2, 1, 2)
  521. AutoConeButton.ZIndex = 3
  522. AutoConeButton.Image = "rbxassetid://1285673399"
  523. AutoConeButton.ImageColor3 = Color3.new(0.105882, 0.164706, 0.207843)
  524. AutoConeButton.ScaleType = Enum.ScaleType.Slice
  525. AutoConeButton.SliceCenter = Rect.new(8, 8, 247, 247)
  526.  
  527. AutoConeEnabledText.Name = "AutoConeEnabledText"
  528. AutoConeEnabledText.Parent = AutoCone
  529. AutoConeEnabledText.BackgroundColor3 = Color3.new(1, 1, 1)
  530. AutoConeEnabledText.BackgroundTransparency = 1
  531. AutoConeEnabledText.BorderSizePixel = 0
  532. AutoConeEnabledText.Position = UDim2.new(0.00847458839, 0, 0.0370370448, 0)
  533. AutoConeEnabledText.Size = UDim2.new(0, 118, 0, 27)
  534. AutoConeEnabledText.ZIndex = 5
  535. AutoConeEnabledText.Font = Enum.Font.SciFi
  536. AutoConeEnabledText.Text = "DISABLED"
  537. AutoConeEnabledText.TextColor3 = Color3.new(0, 0, 0)
  538. AutoConeEnabledText.TextSize = 14
  539. AutoConeEnabledText.TextWrapped = true
  540.  
  541. AutoConeText.Name = "AutoConeText"
  542. AutoConeText.Parent = AutoCone
  543. AutoConeText.BackgroundColor3 = Color3.new(1, 1, 1)
  544. AutoConeText.BackgroundTransparency = 1
  545. AutoConeText.BorderSizePixel = 0
  546. AutoConeText.Position = UDim2.new(0.00847458839, 0, -0.962962985, 0)
  547. AutoConeText.Size = UDim2.new(0, 118, 0, 27)
  548. AutoConeText.ZIndex = 5
  549. AutoConeText.Font = Enum.Font.SciFi
  550. AutoConeText.Text = "Auto Cones"
  551. AutoConeText.TextColor3 = Color3.new(0, 0, 0)
  552. AutoConeText.TextSize = 17
  553. AutoConeText.TextWrapped = true
  554.  
  555. AutoFlavors.Name = "AutoFlavors"
  556. AutoFlavors.Parent = Main
  557. AutoFlavors.BackgroundColor3 = Color3.new(0.647059, 0.333333, 0.0745098)
  558. AutoFlavors.BackgroundTransparency = 1
  559. AutoFlavors.BorderSizePixel = 0
  560. AutoFlavors.Position = UDim2.new(0.360000014, 0, 0.850000024, 0)
  561. AutoFlavors.Size = UDim2.new(0, 118, 0, 27)
  562. AutoFlavors.ZIndex = 5
  563. AutoFlavors.Image = "rbxassetid://1285673399"
  564. AutoFlavors.ImageColor3 = Color3.new(1, 0.368627, 0.0745098)
  565. AutoFlavors.ScaleType = Enum.ScaleType.Slice
  566. AutoFlavors.SliceCenter = Rect.new(8, 8, 247, 247)
  567.  
  568. AutoFlavorsButton.Name = "AutoFlavorsButton"
  569. AutoFlavorsButton.Parent = AutoFlavors
  570. AutoFlavorsButton.AnchorPoint = Vector2.new(0.5, 0.5)
  571. AutoFlavorsButton.BackgroundTransparency = 1
  572. AutoFlavorsButton.BorderSizePixel = 0
  573. AutoFlavorsButton.Position = UDim2.new(0.5, 0, 0.5, 0)
  574. AutoFlavorsButton.Size = UDim2.new(1, 2, 1, 2)
  575. AutoFlavorsButton.ZIndex = 3
  576. AutoFlavorsButton.Image = "rbxassetid://1285673399"
  577. AutoFlavorsButton.ImageColor3 = Color3.new(0.105882, 0.164706, 0.207843)
  578. AutoFlavorsButton.ScaleType = Enum.ScaleType.Slice
  579. AutoFlavorsButton.SliceCenter = Rect.new(8, 8, 247, 247)
  580.  
  581. AutoFlavorsEnabledText.Name = "AutoFlavorsEnabledText"
  582. AutoFlavorsEnabledText.Parent = AutoFlavors
  583. AutoFlavorsEnabledText.BackgroundColor3 = Color3.new(1, 1, 1)
  584. AutoFlavorsEnabledText.BackgroundTransparency = 1
  585. AutoFlavorsEnabledText.BorderSizePixel = 0
  586. AutoFlavorsEnabledText.Position = UDim2.new(0.00847458839, 0, 0.0370370448, 0)
  587. AutoFlavorsEnabledText.Size = UDim2.new(0, 118, 0, 27)
  588. AutoFlavorsEnabledText.ZIndex = 5
  589. AutoFlavorsEnabledText.Font = Enum.Font.SciFi
  590. AutoFlavorsEnabledText.Text = "DISABLED"
  591. AutoFlavorsEnabledText.TextColor3 = Color3.new(0, 0, 0)
  592. AutoFlavorsEnabledText.TextSize = 14
  593. AutoFlavorsEnabledText.TextWrapped = true
  594.  
  595. AutoFlavorsText.Name = "AutoFlavorsText"
  596. AutoFlavorsText.Parent = AutoFlavors
  597. AutoFlavorsText.BackgroundColor3 = Color3.new(1, 1, 1)
  598. AutoFlavorsText.BackgroundTransparency = 1
  599. AutoFlavorsText.BorderSizePixel = 0
  600. AutoFlavorsText.Position = UDim2.new(0.00847458839, 0, -0.962962985, 0)
  601. AutoFlavorsText.Size = UDim2.new(0, 118, 0, 27)
  602. AutoFlavorsText.ZIndex = 5
  603. AutoFlavorsText.Font = Enum.Font.SciFi
  604. AutoFlavorsText.Text = "Auto Flavors"
  605. AutoFlavorsText.TextColor3 = Color3.new(0, 0, 0)
  606. AutoFlavorsText.TextSize = 17
  607. AutoFlavorsText.TextWrapped = true
  608.  
  609. AutoObby.Name = "AutoObby"
  610. AutoObby.Parent = Main
  611. AutoObby.BackgroundColor3 = Color3.new(0.647059, 0.333333, 0.0745098)
  612. AutoObby.BackgroundTransparency = 1
  613. AutoObby.BorderSizePixel = 0
  614. AutoObby.Position = UDim2.new(0.689999998, 0, 0.349999994, 0)
  615. AutoObby.Size = UDim2.new(0, 118, 0, 27)
  616. AutoObby.ZIndex = 5
  617. AutoObby.Image = "rbxassetid://1285673399"
  618. AutoObby.ImageColor3 = Color3.new(1, 0.368627, 0.0745098)
  619. AutoObby.ScaleType = Enum.ScaleType.Slice
  620. AutoObby.SliceCenter = Rect.new(8, 8, 247, 247)
  621.  
  622. AutoObbyButton.Name = "AutoObbyButton"
  623. AutoObbyButton.Parent = AutoObby
  624. AutoObbyButton.AnchorPoint = Vector2.new(0.5, 0.5)
  625. AutoObbyButton.BackgroundTransparency = 1
  626. AutoObbyButton.BorderSizePixel = 0
  627. AutoObbyButton.Position = UDim2.new(0.5, 0, 0.5, 0)
  628. AutoObbyButton.Size = UDim2.new(1, 2, 1, 2)
  629. AutoObbyButton.ZIndex = 3
  630. AutoObbyButton.Image = "rbxassetid://1285673399"
  631. AutoObbyButton.ImageColor3 = Color3.new(0.105882, 0.164706, 0.207843)
  632. AutoObbyButton.ScaleType = Enum.ScaleType.Slice
  633. AutoObbyButton.SliceCenter = Rect.new(8, 8, 247, 247)
  634.  
  635. AutoObbyEnabledText.Name = "AutoObbyEnabledText"
  636. AutoObbyEnabledText.Parent = AutoObby
  637. AutoObbyEnabledText.BackgroundColor3 = Color3.new(1, 1, 1)
  638. AutoObbyEnabledText.BackgroundTransparency = 1
  639. AutoObbyEnabledText.BorderSizePixel = 0
  640. AutoObbyEnabledText.Position = UDim2.new(0.00847458839, 0, 0.0370370448, 0)
  641. AutoObbyEnabledText.Size = UDim2.new(0, 118, 0, 27)
  642. AutoObbyEnabledText.ZIndex = 5
  643. AutoObbyEnabledText.Font = Enum.Font.SciFi
  644. AutoObbyEnabledText.Text = "DISABLED"
  645. AutoObbyEnabledText.TextColor3 = Color3.new(0, 0, 0)
  646. AutoObbyEnabledText.TextSize = 14
  647. AutoObbyEnabledText.TextWrapped = true
  648.  
  649. AutoObbyText.Name = "AutoObbyText"
  650. AutoObbyText.Parent = AutoObby
  651. AutoObbyText.BackgroundColor3 = Color3.new(1, 1, 1)
  652. AutoObbyText.BackgroundTransparency = 1
  653. AutoObbyText.BorderSizePixel = 0
  654. AutoObbyText.Position = UDim2.new(0.00847458839, 0, -0.962962985, 0)
  655. AutoObbyText.Size = UDim2.new(0, 118, 0, 27)
  656. AutoObbyText.ZIndex = 5
  657. AutoObbyText.Font = Enum.Font.SciFi
  658. AutoObbyText.Text = "Auto Obby"
  659. AutoObbyText.TextColor3 = Color3.new(0, 0, 0)
  660. AutoObbyText.TextSize = 17
  661. AutoObbyText.TextWrapped = true
  662.  
  663. Teleport.Name = "Teleport"
  664. Teleport.Parent = Main
  665. Teleport.BackgroundColor3 = Color3.new(0.647059, 0.333333, 0.0745098)
  666. Teleport.BackgroundTransparency = 1
  667. Teleport.BorderSizePixel = 0
  668. Teleport.Position = UDim2.new(0.689999998, 0, 0.600000024, 0)
  669. Teleport.Size = UDim2.new(0, 118, 0, 27)
  670. Teleport.ZIndex = 5
  671. Teleport.Image = "rbxassetid://1285673399"
  672. Teleport.ImageColor3 = Color3.new(1, 0.368627, 0.0745098)
  673. Teleport.ScaleType = Enum.ScaleType.Slice
  674. Teleport.SliceCenter = Rect.new(8, 8, 247, 247)
  675.  
  676. TeleportButtonText.Name = "TeleportButtonText"
  677. TeleportButtonText.Parent = Teleport
  678. TeleportButtonText.BackgroundColor3 = Color3.new(1, 1, 1)
  679. TeleportButtonText.BackgroundTransparency = 1
  680. TeleportButtonText.BorderSizePixel = 0
  681. TeleportButtonText.Position = UDim2.new(0.00847458839, 0, 0.0370370448, 0)
  682. TeleportButtonText.Size = UDim2.new(0, 118, 0, 27)
  683. TeleportButtonText.ZIndex = 5
  684. TeleportButtonText.Font = Enum.Font.SciFi
  685. TeleportButtonText.Text = "Teleport"
  686. TeleportButtonText.TextColor3 = Color3.new(0, 0, 0)
  687. TeleportButtonText.TextSize = 14
  688. TeleportButtonText.TextWrapped = true
  689.  
  690. TeleportText.Name = "TeleportText"
  691. TeleportText.Parent = Teleport
  692. TeleportText.BackgroundColor3 = Color3.new(1, 1, 1)
  693. TeleportText.BackgroundTransparency = 1
  694. TeleportText.BorderSizePixel = 0
  695. TeleportText.Position = UDim2.new(0.00847458839, 0, -0.962962985, 0)
  696. TeleportText.Size = UDim2.new(0, 118, 0, 27)
  697. TeleportText.ZIndex = 5
  698. TeleportText.Font = Enum.Font.SciFi
  699. TeleportText.Text = "Teleport"
  700. TeleportText.TextColor3 = Color3.new(0, 0, 0)
  701. TeleportText.TextSize = 17
  702. TeleportText.TextWrapped = true
  703.  
  704. TeleportButton.Name = "TeleportButton"
  705. TeleportButton.Parent = Teleport
  706. TeleportButton.AnchorPoint = Vector2.new(0.5, 0.5)
  707. TeleportButton.BackgroundTransparency = 1
  708. TeleportButton.BorderSizePixel = 0
  709. TeleportButton.Position = UDim2.new(0.5, 0, 0.5, 0)
  710. TeleportButton.Size = UDim2.new(1, 2, 1, 2)
  711. TeleportButton.ZIndex = 3
  712. TeleportButton.Image = "rbxassetid://1285673399"
  713. TeleportButton.ImageColor3 = Color3.new(0.105882, 0.164706, 0.207843)
  714. TeleportButton.ScaleType = Enum.ScaleType.Slice
  715. TeleportButton.SliceCenter = Rect.new(8, 8, 247, 247)
  716.  
  717. TeleportNumber.Name = "TeleportNumber"
  718. TeleportNumber.Parent = Main
  719. TeleportNumber.BackgroundTransparency = 1
  720. TeleportNumber.BorderSizePixel = 0
  721. TeleportNumber.Position = UDim2.new(0.686774969, 0, 0.765550256, 0)
  722. TeleportNumber.Size = UDim2.new(0, 118, 0, 19)
  723. TeleportNumber.ZIndex = 10
  724. TeleportNumber.Image = "rbxassetid://1285673399"
  725. TeleportNumber.ImageColor3 = Color3.new(1, 0.368627, 0.0745098)
  726. TeleportNumber.ScaleType = Enum.ScaleType.Slice
  727. TeleportNumber.SliceCenter = Rect.new(8, 8, 247, 247)
  728.  
  729. BorderPixel.Name = "BorderPixel"
  730. BorderPixel.Parent = TeleportNumber
  731. BorderPixel.AnchorPoint = Vector2.new(0.5, 0.5)
  732. BorderPixel.BackgroundTransparency = 1
  733. BorderPixel.BorderSizePixel = 0
  734. BorderPixel.Position = UDim2.new(0.5, 0, 0.5, 0)
  735. BorderPixel.Size = UDim2.new(1, 2, 1, 2)
  736. BorderPixel.ZIndex = 9
  737. BorderPixel.Image = "rbxassetid://1285673399"
  738. BorderPixel.ImageColor3 = Color3.new(0.105882, 0.164706, 0.207843)
  739. BorderPixel.ScaleType = Enum.ScaleType.Slice
  740. BorderPixel.SliceCenter = Rect.new(8, 8, 247, 247)
  741.  
  742. TeleportNumberText.Name = "TeleportNumberText"
  743. TeleportNumberText.Parent = TeleportNumber
  744. TeleportNumberText.BackgroundColor3 = Color3.new(1, 1, 1)
  745. TeleportNumberText.BackgroundTransparency = 1
  746. TeleportNumberText.Position = UDim2.new(0.0169491526, 0, 0, 0)
  747. TeleportNumberText.Size = UDim2.new(1, 0, 1, 0)
  748. TeleportNumberText.ZIndex = 55
  749. TeleportNumberText.Font = Enum.Font.SciFi
  750. TeleportNumberText.PlaceholderColor3 = Color3.new(0, 0, 0)
  751. TeleportNumberText.PlaceholderText = "Number from 1 - 10"
  752. TeleportNumberText.Text = ""
  753. TeleportNumberText.TextColor3 = Color3.new(0, 0, 0)
  754. TeleportNumberText.TextSize = 15
  755. TeleportNumberText.TextWrapped = true
  756.  
  757. Close.Name = "Close"
  758. Close.Parent = Main
  759. Close.BackgroundColor3 = Color3.new(0.647059, 0.333333, 0.0745098)
  760. Close.BackgroundTransparency = 1
  761. Close.BorderSizePixel = 0
  762. Close.Position = UDim2.new(0.68909514, 0, 0.880382776, 0)
  763. Close.Size = UDim2.new(0, 118, 0, 16)
  764. Close.ZIndex = 5
  765. Close.Image = "rbxassetid://1285673399"
  766. Close.ImageColor3 = Color3.new(1, 0.368627, 0.0745098)
  767. Close.ScaleType = Enum.ScaleType.Slice
  768. Close.SliceCenter = Rect.new(8, 8, 247, 247)
  769.  
  770. CloseButton.Name = "CloseButton"
  771. CloseButton.Parent = Close
  772. CloseButton.AnchorPoint = Vector2.new(0.5, 0.5)
  773. CloseButton.BackgroundTransparency = 1
  774. CloseButton.BorderSizePixel = 0
  775. CloseButton.Position = UDim2.new(0.5, 0, 0.5, 0)
  776. CloseButton.Size = UDim2.new(1, 2, 1, 2)
  777. CloseButton.ZIndex = 3
  778. CloseButton.Image = "rbxassetid://1285673399"
  779. CloseButton.ImageColor3 = Color3.new(0.105882, 0.164706, 0.207843)
  780. CloseButton.ScaleType = Enum.ScaleType.Slice
  781. CloseButton.SliceCenter = Rect.new(8, 8, 247, 247)
  782.  
  783. CloseButtonText.Name = "CloseButtonText"
  784. CloseButtonText.Parent = Close
  785. CloseButtonText.BackgroundColor3 = Color3.new(1, 1, 1)
  786. CloseButtonText.BackgroundTransparency = 1
  787. CloseButtonText.BorderSizePixel = 0
  788. CloseButtonText.Position = UDim2.new(-0.00847457629, 0, 0, 0)
  789. CloseButtonText.Size = UDim2.new(0, 118, 0, 16)
  790. CloseButtonText.ZIndex = 5
  791. CloseButtonText.Font = Enum.Font.SciFi
  792. CloseButtonText.Text = "Close"
  793. CloseButtonText.TextColor3 = Color3.new(0, 0, 0)
  794. CloseButtonText.TextSize = 14
  795. CloseButtonText.TextWrapped = true
  796.  
  797. Open.Name = "Open"
  798. Open.Parent = IceCreamSimulatorGUI
  799. Open.BackgroundTransparency = 1
  800. Open.BorderSizePixel = 0
  801. Open.Position = UDim2.new(-2.0260984935, 0, 0.625748277, 0)
  802. Open.Size = UDim2.new(0.118000001, 0, 0.0920000002, 0)
  803. Open.ZIndex = 3
  804. Open.Image = "rbxassetid://1283904632"
  805. Open.ScaleType = Enum.ScaleType.Slice
  806. Open.SliceCenter = Rect.new(22, 22, 234, 234)
  807.  
  808. BorderPixel.Name = "BorderPixel"
  809. BorderPixel.Parent = Open
  810. BorderPixel.AnchorPoint = Vector2.new(0.5, 0.5)
  811. BorderPixel.BackgroundTransparency = 1
  812. BorderPixel.BorderSizePixel = 0
  813. BorderPixel.Position = UDim2.new(0.5, 0, 0.5, 0)
  814. BorderPixel.Size = UDim2.new(1, 8, 1, 8)
  815. BorderPixel.ZIndex = 2
  816. BorderPixel.Image = "rbxassetid://1283904632"
  817. BorderPixel.ImageColor3 = Color3.new(0.105882, 0.164706, 0.207843)
  818. BorderPixel.ScaleType = Enum.ScaleType.Slice
  819. BorderPixel.SliceCenter = Rect.new(22, 22, 234, 234)
  820.  
  821. OpenText.Name = "OpenText"
  822. OpenText.Parent = Open
  823. OpenText.AnchorPoint = Vector2.new(0, 0.5)
  824. OpenText.BackgroundTransparency = 1
  825. OpenText.Position = UDim2.new(0, 0, 0.5, 0)
  826. OpenText.Size = UDim2.new(1, 0, 1, 0)
  827. OpenText.ZIndex = 3
  828. OpenText.Font = Enum.Font.SciFi
  829. OpenText.Text = "OPEN"
  830. OpenText.TextSize = 28
  831.  
  832. TextLabel.Parent = Main
  833. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  834. TextLabel.BackgroundTransparency = 1
  835. TextLabel.Position = UDim2.new(0, 0, -0.162679419, 0)
  836. TextLabel.Size = UDim2.new(0, 431, 0, 26)
  837. TextLabel.Font = Enum.Font.SciFi
  838. TextLabel.Text = "Made by Casper#0357"
  839. TextLabel.TextColor3 = Color3.new(0, 0, 0)
  840. TextLabel.TextSize = 32
  841. TextLabel.TextStrokeColor3 = Color3.new(0.882353, 0.207843, 0.352941)
  842. TextLabel.TextStrokeTransparency = 0
  843.  
  844. TextLabel_2.Parent = Main
  845. TextLabel_2.BackgroundColor3 = Color3.new(1, 1, 1)
  846. TextLabel_2.BackgroundTransparency = 1
  847. TextLabel_2.Position = UDim2.new(-0.0185614843, 0, 1.03827751, 0)
  848. TextLabel_2.Size = UDim2.new(0, 431, 0, 26)
  849. TextLabel_2.Font = Enum.Font.SciFi
  850. TextLabel_2.Text = "Made by Casper#0357"
  851. TextLabel_2.TextColor3 = Color3.new(0, 0, 0)
  852. TextLabel_2.TextSize = 32
  853. TextLabel_2.TextStrokeColor3 = Color3.new(0.882353, 0.207843, 0.352941)
  854. TextLabel_2.TextStrokeTransparency = 0
  855.  
  856. RapidEat.MouseButton1Click:Connect(function()
  857. if RapidEatToggled == true then
  858. RapidEatToggled = false
  859. RapidEatEnabledText.Text = "DISABLED"
  860. print("Disabled")
  861. else
  862. RapidEatToggled = true
  863. RapidEatEnabledText.Text = "ENABLED"
  864. print("Enabled")
  865.  
  866. while wait(0.01) do
  867. if Backpack:FindFirstChild("Ice Cream") then
  868. Backpack:FindFirstChild("Ice Cream").E:FireServer()
  869. elseif Character:FindFirstChild("Ice Cream") then
  870. Character:FindFirstChild("Ice Cream").E:FireServer()
  871. end
  872. for i, v in pairs(PlayerGui:GetChildren()) do
  873. if v.Name == "ScoopsGui" then
  874. v:Destroy()
  875. end
  876. end
  877. if RapidEatToggled == false then
  878. break
  879. end
  880. end
  881. end
  882. end)
  883.  
  884. SellAnywhere.MouseButton1Click:Connect(function()
  885. if SellAnywhereToggled == true then
  886. SellAnywhereToggled = false
  887. SellAnywhereEnabledText.Text = "DISABLED"
  888. print("Disabled")
  889. else
  890. SellAnywhereToggled = true
  891. SellAnywhereEnabledText.Text = "ENABLED"
  892. print("Enabled")
  893. while wait(0.01) do
  894. ChocoCastle.Sell.Sell.CFrame = player.Character:FindFirstChild("HumanoidRootPart").CFrame
  895. IceCreamTruck:FindFirstChild("Enter").CFrame = player.Character:FindFirstChild("HumanoidRootPart").CFrame
  896. if SellAnywhereToggled == false then
  897. IceCreamTruck.Enter.CFrame = StartPosition
  898. ChocoCastle.Sell.Sell.CFrame = StartPosition2
  899. break
  900. end
  901. end
  902. end
  903. end)
  904.  
  905.  
  906. SuperSpeed.MouseButton1Click:Connect(function()
  907.  
  908. if SuperSpeedToggled == true then
  909. SuperSpeedToggled = false
  910. SuperSpeedEnabledText.Text = "DISABLED"
  911. print("Disabled")
  912. player.Character.Humanoid.WalkSpeed = 16
  913. else
  914. SuperSpeedToggled = true
  915. SuperSpeedEnabledText.Text = "ENABLED"
  916. print("Enabled")
  917. player.Character.Humanoid.WalkSpeed = 60
  918. end
  919. end)
  920.  
  921.  
  922. AutoRebirth.MouseButton1Click:Connect(function()
  923.  
  924. if AutoRebirthToggled == true then
  925. AutoRebirthToggled = false
  926. AutoRebirthEnabledText.Text = "DISABLED"
  927. print("Disabled")
  928. else
  929. AutoRebirthToggled = true
  930. AutoRebirthEnabledText.Text = "ENABLED"
  931. print("Enabled")
  932. while wait(0.01) do
  933. game.ReplicatedStorage.Events.Rebirth:FireServer()
  934. if AutoRebirthToggled == false then
  935. break
  936. end
  937. end
  938. end
  939. end)
  940.  
  941. AutoTokens.MouseButton1Click:Connect(function()
  942.  
  943. if AutoTokensToggled == true then
  944. AutoTokensToggled = false
  945. AutoTokensEnabledText.Text = "DISABLED"
  946. print("Disabled")
  947. else
  948. AutoTokensToggled = true
  949. Tokens = MainArea.Tokens:GetChildren()
  950. Tokens2 = HalloweenArea.Tokens:GetChildren()
  951. AutoTokensEnabledText.Text = "ENABLED"
  952. print("Enabled")
  953. while wait(1) do
  954. for i, v in pairs(Tokens) do
  955. v.CFrame = game.Players.LocalPlayer.Character:FindFirstChild("HumanoidRootPart").CFrame
  956. end
  957. for i, v in pairs(Tokens2) do
  958. v.CFrame = game.Players.LocalPlayer.Character:FindFirstChild("HumanoidRootPart").CFrame
  959. end
  960. for i, v in pairs(PlayerGui:GetChildren()) do
  961. if v.Name == "TokenDisplayGui" then
  962. v:Destroy()
  963. end
  964. end
  965. if AutoTokensToggled == false then
  966. break
  967. end
  968.  
  969. end
  970. end
  971. end)
  972.  
  973.  
  974. AutoPets.MouseButton1Click:Connect(function()
  975.  
  976. if AutoPetsToggled == true then
  977. AutoPetsEnabledText.Text = "DISABLED"
  978. print("Disabled")
  979. AutoPetsToggled = false
  980. else
  981. AutoPetsToggled = true
  982. AutoPetsEnabledText.Text = "ENABLED"
  983. print("Enabled")
  984. while wait(5) do
  985. for i = 1, AmountOfPets do
  986. game.ReplicatedStorage.Events.BuyEquipPet:FireServer(i)
  987. end
  988. if AutoPetsToggled == false then
  989. break
  990. end
  991. end
  992. end
  993. end)
  994.  
  995.  
  996. AutoCash.MouseButton1Click:Connect(function()
  997. if AutoCashToggled == true then
  998. AutoCashToggled = false
  999. AutoCashEnabledText.Text = "DISABLED"
  1000. print("Disabled")
  1001. else
  1002. AutoCashToggled = true
  1003. AutoCashEnabledText.Text = "ENABLED"
  1004. print("Enabled")
  1005. while wait(1) do
  1006. for i, v in pairs(Coins) do
  1007. v.CFrame = game.Players.LocalPlayer.Character:FindFirstChild("HumanoidRootPart").CFrame
  1008. end
  1009. for i, v in pairs(PlayerGui:GetChildren()) do
  1010. if v.Name == "CoinDisplayGui" then
  1011. v:Destroy()
  1012. end
  1013. end
  1014. if AutoCashToggled == false then
  1015. break
  1016. end
  1017. end
  1018. end
  1019. end)
  1020.  
  1021. AutoCone.MouseButton1Click:Connect(function()
  1022. if AutoConeToggled == true then
  1023. AutoConeToggled = false
  1024. AutoConeEnabledText.Text = "DISABLED"
  1025. print("Disabled")
  1026. else
  1027. AutoConeToggled = true
  1028. AutoConeEnabledText.Text = "ENABLED"
  1029. print("Enabled")
  1030. while wait(5) do
  1031. for i = 1, AmountOfCones do
  1032. game.ReplicatedStorage.Events.BuyEquipCone:FireServer(i)
  1033. end
  1034. if AutoConeToggled == false then
  1035. break
  1036. end
  1037. end
  1038. end
  1039. end)
  1040.  
  1041.  
  1042. AutoFlavors.MouseButton1Click:Connect(function()
  1043.  
  1044. if AutoFlavorsToggled == true then
  1045. AutoFlavorsToggled = false
  1046. AutoFlavorsEnabledText.Text = "DISABLED"
  1047. print("Disabled")
  1048. else
  1049. AutoFlavorsToggled = true
  1050. AutoFlavorsEnabledText.Text = "ENABLED"
  1051. print("Enabled")
  1052. while wait(5) do
  1053. for i = 1, AmountOfFlavors do
  1054. game.ReplicatedStorage.Events.UnlockFlavor:FireServer(i)
  1055. game.ReplicatedStorage.Events.EquipFlavorSkin:FireServer(i)
  1056. end
  1057. if AutoFlavorsToggled == false then
  1058. break
  1059. end
  1060. end
  1061. end
  1062. end)
  1063.  
  1064.  
  1065. AutoObby.MouseButton1Click:Connect(function()
  1066. if AutoObbyActive == true then
  1067.  
  1068. else
  1069. AutoObbyEnabledText.Text = "Active"
  1070. for i = 1, 10 do
  1071. game.ReplicatedStorage.Events.Teleport:FireServer(i)
  1072. wait(0.5)
  1073. end
  1074.  
  1075. for i, v in pairs(game.Workspace.Obby:GetChildren()) do
  1076. local chest = v:FindFirstChild("Chest")
  1077. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = chest.Portal.CFrame
  1078. wait(3)
  1079. end
  1080. AutoObbyEnabledText.Text = "Not Active"
  1081. AutoObbyActive = false
  1082. end
  1083. end)
  1084.  
  1085. Teleport.MouseButton1Click:Connect(function()
  1086. local TpNumber = tonumber(TeleportNumberText.Text)
  1087. game.ReplicatedStorage.Events.Teleport:FireServer(TpNumber)
  1088. end)
  1089.  
  1090.  
  1091. Close.MouseButton1Click:Connect(function()
  1092. if Visible == true then
  1093. Visible = false
  1094. Main:TweenPosition(UDim2.new(-2, 0, 0, 0), "Out", 1)
  1095. Open:TweenPosition(UDim2.new(-0.026, 0,0.626, 0), "Out", 1)
  1096. end
  1097.  
  1098. end)
  1099.  
  1100. Open.MouseButton1Click:Connect(function()
  1101. Main:TweenPosition(UDim2.new(0.309, 0,0.321, 0), "Out", 1)
  1102. Open:TweenPosition(UDim2.new(-2., 0,0.626, 0), "Out", 1)
  1103. Visible = true
  1104. end)
Add Comment
Please, Sign In to add comment