Advertisement
chandreeeee

gui op ice cream sim by chndre

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