Advertisement
Upscalefanatic3

(Roblox) Miners Haven Rocket Script

Feb 21st, 2020
799
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. local version = "0.1.1"
  2. local gui = game.Players.LocalPlayer.PlayerGui:WaitForChild("GUI")
  3.  
  4. spawn(function()
  5. while true do
  6. wait(0.5)
  7. if gui.HUDLeft.Buttons:findFirstChild("Rocket") then
  8. else
  9. local Rocket = Instance.new("ImageButton")
  10. local FancyShadow = Instance.new("ImageLabel")
  11. local Icon = Instance.new("ImageLabel")
  12. local Hover = Instance.new("Frame")
  13. local Title = Instance.new("TextLabel")
  14. local Sub = Instance.new("TextLabel")
  15. local Under = Instance.new("TextLabel")
  16. local Pulse = Instance.new("ImageLabel")
  17.  
  18. Rocket.Name = "Rocket"
  19. Rocket.Parent = game.Players.LocalPlayer.PlayerGui.GUI.HUDLeft.Buttons
  20. Rocket.BackgroundColor3 = Color3.new(1, 1, 1)
  21. Rocket.BackgroundTransparency = 1
  22. Rocket.LayoutOrder = 4
  23. Rocket.Size = UDim2.new(0, 50, 0, 50)
  24. Rocket.ZIndex = 2
  25. Rocket.Image = "rbxassetid://875052259"
  26. Rocket.ImageColor3 = Color3.new(0.67, 0, 0)
  27. Rocket.ScaleType = Enum.ScaleType.Slice
  28. Rocket.SliceCenter = Rect.new(10, 10, 10, 10)
  29.  
  30. FancyShadow.Name = "FancyShadow"
  31. FancyShadow.Parent = Rocket
  32. FancyShadow.AnchorPoint = Vector2.new(0.5, 0.5)
  33. FancyShadow.BackgroundColor3 = Color3.new(1, 1, 1)
  34. FancyShadow.BackgroundTransparency = 1
  35. FancyShadow.Position = UDim2.new(0.5, 0, 0.5, 4)
  36. FancyShadow.Size = UDim2.new(1, 0, 1, 0)
  37. FancyShadow.Image = "rbxassetid://875052259"
  38. FancyShadow.ImageColor3 = Color3.new(0.403922, 0.403922, 0.403922)
  39. FancyShadow.ImageTransparency = 0
  40. FancyShadow.ScaleType = Enum.ScaleType.Slice
  41. FancyShadow.SliceCenter = Rect.new(10, 10, 10, 10)
  42.  
  43. Icon.Name = "Icon"
  44. Icon.Parent = Rocket
  45. Icon.AnchorPoint = Vector2.new(0.5, 0.5)
  46. Icon.BackgroundColor3 = Color3.new(1, 1, 1)
  47. Icon.BackgroundTransparency = 1
  48. Icon.Position = UDim2.new(0.5, 0, 0.5, 0)
  49. Icon.Rotation = -45
  50. Icon.Size = UDim2.new(0, 40, 0, 40)
  51. Icon.ZIndex = 2
  52. Icon.Image = "rbxassetid://2887383398"
  53. Icon.ImageTransparency = 0.2
  54.  
  55. Hover.Name = "Hover"
  56. Hover.Parent = Rocket
  57. Hover.BackgroundColor3 = Color3.new(1, 1, 1)
  58. Hover.BackgroundTransparency = 1
  59. Hover.ClipsDescendants = true
  60. Hover.Position = UDim2.new(1, 0, 0, 0)
  61. Hover.Size = UDim2.new(0, 220, 1, 0)
  62.  
  63. Title.Name = "Title"
  64. Title.Parent = Hover
  65. Title.BackgroundColor3 = Color3.new(1, 1, 1)
  66. Title.BackgroundTransparency = 1
  67. Title.Position = UDim2.new(-1, 0, 0, 0)
  68. Title.Size = UDim2.new(0, 200, 0.7, 0)
  69. Title.ZIndex = 4
  70. Title.Font = Enum.Font.SourceSansBold
  71. Title.FontSize = Enum.FontSize.Size14
  72. Title.Text = "Rocket v" .. version
  73. Title.TextColor3 = Color3.new(0.67, 0, 0)
  74. Title.TextScaled = true
  75. Title.TextSize = 14
  76. Title.TextStrokeColor3 = Color3.new(0.196078, 0.196078, 0.196078)
  77. Title.TextStrokeTransparency = 0
  78. Title.TextWrapped = true
  79. Title.TextXAlignment = Enum.TextXAlignment.Left
  80. Title.TextYAlignment = Enum.TextYAlignment.Top
  81.  
  82. Under.Name = "Under"
  83. Under.Parent = Title
  84. Under.BackgroundColor3 = Color3.new(1, 1, 1)
  85. Under.BackgroundTransparency = 1
  86. Under.Position = UDim2.new(0, 0, 0, 3)
  87. Under.Size = UDim2.new(1, 0, 1, 0)
  88. Under.ZIndex = 3
  89. Under.Font = Enum.Font.SourceSansBold
  90. Under.FontSize = Enum.FontSize.Size14
  91. Under.Text = "Rocket v" .. version
  92. Under.TextColor3 = Color3.new(0.196078, 0, 0)
  93. Under.TextScaled = true
  94. Under.TextSize = 14
  95. Under.TextStrokeColor3 = Color3.new(0.196078, 0.196078, 0.196078)
  96. Under.TextStrokeTransparency = 0
  97. Under.TextWrapped = true
  98. Under.TextXAlignment = Enum.TextXAlignment.Left
  99. Under.TextYAlignment = Enum.TextYAlignment.Top
  100.  
  101. Sub.Name = "Sub"
  102. Sub.Parent = Title
  103. Sub.BackgroundColor3 = Color3.new(0, 0, 0)
  104. Sub.BackgroundTransparency = 0.6
  105. Sub.BorderSizePixel = 0
  106. Sub.Position = UDim2.new(0, 0, 0.95, 0)
  107. Sub.Size = UDim2.new(0.37, 0, 0.45, 0)
  108. Sub.ZIndex = 4
  109. Sub.Font = Enum.Font.SourceSansBold
  110. Sub.FontSize = Enum.FontSize.Size14
  111. Sub.Text = "Hotkey: [X]"
  112. Sub.TextColor3 = Color3.new(0.941177, 0.941177, 0.941177)
  113. Sub.TextScaled = true
  114. Sub.TextSize = 14
  115. Sub.TextStrokeTransparency = 0
  116. Sub.TextWrapped = true
  117. Sub.TextXAlignment = Enum.TextXAlignment.Left
  118. Sub.TextYAlignment = Enum.TextYAlignment.Top
  119.  
  120. Pulse.Name = "Pulse"
  121. Pulse.Parent = Rocket
  122. Pulse.AnchorPoint = Vector2.new(0.5, 0.5)
  123. Pulse.BackgroundColor3 = Color3.new(1, 1, 1)
  124. Pulse.BackgroundTransparency = 1
  125. Pulse.Position = UDim2.new(0.5, 0, 0.5, 0)
  126. Pulse.Size = UDim2.new(2, 0, 2, 0)
  127. Pulse.Visible = false
  128. Pulse.Image = "rbxassetid://875052259"
  129. Pulse.ImageColor3 = Color3.new(0.666667, 0, 0)
  130. Pulse.ImageTransparency = 1
  131. Pulse.ScaleType = Enum.ScaleType.Slice
  132. Pulse.SliceCenter = Rect.new(10, 10, 10, 10)
  133.  
  134. function Tween(Object, Properties, Value, Time, Style, Direction)
  135.     Style = Style or Enum.EasingStyle.Quad
  136.     Direction = Direction or Enum.EasingDirection.Out
  137.     Time = Time or 0.5
  138.     local propertyGoals = {}
  139.     local Table = type(Value) == "table" and true or false
  140.     for i, Property in pairs(Properties) do
  141.         propertyGoals[Property] = Table and Value[i] or Value
  142.     end
  143.     local tweenInfo = TweenInfo.new(Time, Style, Direction)
  144.     local tween = game:GetService("TweenService"):Create(Object, tweenInfo, propertyGoals)
  145.     tween:Play()
  146. end
  147.  
  148. local Button = game.Players.LocalPlayer.PlayerGui.GUI.HUDLeft.Buttons.Rocket
  149. local function close(Button)
  150.   local Goal = UDim2.new(-1, 0, 0, 0)
  151.   if Button.Hover.Active then
  152.     Button.Hover.Active = false
  153.     if Button.Hover:FindFirstChild("Title") and Button.Hover.Title.Position ~= Goal then
  154.       Tween(Button.Hover.Title, {"Position"}, Goal, 1, Enum.EasingStyle.Quint, Enum.EasingDirection.In)
  155.     end
  156.   elseif Button.Hover.Title.Position ~= Goal then
  157.     Tween(Button.Hover.Title, {"Position"}, Goal, 1, Enum.EasingStyle.Quart, Enum.EasingDirection.Out)
  158.   end
  159. end
  160. local function open(Button)
  161.   if not Button.Hover.Active then
  162.     Button.Hover.Active = true
  163.     local Goal = UDim2.new(0, 10, 0, 0)
  164.     if Button.Hover:FindFirstChild("Title") and Button.Hover.Title.Position ~= Goal then
  165.       Tween(Button.Hover.Title, {"Position"}, Goal, 1, Enum.EasingStyle.Quint, Enum.EasingDirection.Out)
  166.     end
  167.   end
  168. end
  169. Button.Pulse.Size = UDim2.new(1, 0, 1, 0)
  170. Button.Pulse.ImageTransparency = 0
  171. Button.Pulse.Visible = true
  172. Tween(Button.Pulse, {
  173.   "ImageTransparency",
  174.   "Size"
  175. }, {
  176. 1,
  177. UDim2.new(2, 0, 2, 0)
  178. }, 0.3)
  179. wait(0.3)
  180. Button.Pulse.Visible = false
  181.  
  182. Button.MouseEnter:connect(function()
  183. open(Button)
  184. Button.Pulse.Size = UDim2.new(1, 0, 1, 0)
  185. Button.Pulse.ImageTransparency = 0
  186. Button.Pulse.Visible = true
  187. Tween(Button.Pulse, {
  188. "ImageTransparency",
  189. "Size"
  190. }, {
  191. 1,
  192. UDim2.new(2, 0, 2, 0)
  193. }, 0.3)
  194. wait(0.3)
  195. end)
  196.  
  197. Button.MouseLeave:connect(function()
  198. close(Button)
  199. end)
  200.  
  201. open(Button)
  202. wait(2)
  203. close(Button)
  204.  
  205.  
  206. Button.MouseButton1Down:connect(function()
  207. if game.Players.LocalPlayer.PlayerGui:findFirstChild("RocketHolder") then
  208. if game.Players.LocalPlayer.PlayerGui.RocketHolder.Rocket.Visible == true then
  209. game.Players.LocalPlayer.PlayerGui.GUI.Menu.Menu.Sounds.Click:Play()
  210. game.Players.LocalPlayer.PlayerGui.RocketHolder.Rocket.Visible = false
  211. if game.Lighting.Blur.Size == 9 then
  212. for i=1,18 do
  213. game.Lighting.Blur.Size = game.Lighting.Blur.Size-0.5
  214. wait()
  215. end
  216. end
  217. else
  218. game.Players.LocalPlayer.PlayerGui.GUI.Menu.Menu.Sounds.Click:Play()
  219. game.Players.LocalPlayer.PlayerGui.GUI.Settings.Visible = false
  220. game.Players.LocalPlayer.PlayerGui.GUI.Premium.Visible = false
  221. game.Players.LocalPlayer.PlayerGui.GUI.Shop.Visible = false
  222. game.Players.LocalPlayer.PlayerGui.GUI.Inventory.Visible = false
  223. game.Players.LocalPlayer.PlayerGui.RocketHolder.Rocket.Visible = true
  224. if game.Lighting.Blur.Size == 0 then
  225. for i=1,18 do
  226. game.Lighting.Blur.Size = game.Lighting.Blur.Size+0.5
  227. wait()
  228. end
  229. end
  230. end
  231. end
  232. end)
  233.  
  234. end
  235. end
  236. end)
  237.  
  238.  
  239. spawn(function()
  240. local player=game.Players.LocalPlayer
  241. local uis=game:GetService("UserInputService")
  242. uis.InputBegan:connect(function(key)
  243. pcall(function()
  244. if key.KeyCode==Enum.KeyCode.X then
  245. if game.Players.LocalPlayer.PlayerGui:findFirstChild("RocketHolder") then
  246. if game.Players.LocalPlayer.PlayerGui.RocketHolder.Rocket.Visible == true then
  247. game.Players.LocalPlayer.PlayerGui.RocketHolder.Rocket.Visible = false
  248. if game.Lighting.Blur.Size == 9 then
  249. for i=1,18 do
  250. game.Lighting.Blur.Size = game.Lighting.Blur.Size-0.5
  251. wait()
  252. end
  253. end
  254. else
  255. game.Players.LocalPlayer.PlayerGui.GUI.Settings.Visible = false
  256. game.Players.LocalPlayer.PlayerGui.GUI.Premium.Visible = false
  257. game.Players.LocalPlayer.PlayerGui.GUI.Shop.Visible = false
  258. game.Players.LocalPlayer.PlayerGui.GUI.Inventory.Visible = false
  259. game.Players.LocalPlayer.PlayerGui.RocketHolder.Rocket.Visible = true
  260. if game.Lighting.Blur.Size == 0 then
  261. for i=1,18 do
  262. game.Lighting.Blur.Size = game.Lighting.Blur.Size+0.5
  263. wait()
  264. end
  265. end
  266. end
  267. end
  268. end
  269. end)
  270. end)
  271. end)
  272.  
  273. spawn(function()
  274. if game.Players.LocalPlayer.PlayerGui:findFirstChild("RocketHolder") then
  275. else
  276. local RocketHolder = Instance.new("ScreenGui")
  277. local Rocket = Instance.new("ImageLabel")
  278. local Contents = Instance.new("ScrollingFrame")
  279. local UIListLayout = Instance.new("UIListLayout")
  280. local UIPadding = Instance.new("UIPadding")
  281. local DefaultButtons = Instance.new("ImageLabel")
  282. local DefaultContents = Instance.new("Frame")
  283. local Button1 = Instance.new("TextButton")
  284. local Fold = Instance.new("ImageLabel")
  285. local Button2 = Instance.new("TextButton")
  286. local Fold_2 = Instance.new("ImageLabel")
  287. local UIListLayout_2 = Instance.new("UIListLayout")
  288. local DefaultToggle = Instance.new("ImageLabel")
  289. local DefaultContents_2 = Instance.new("Frame")
  290. local DefaultToggle_2 = Instance.new("TextButton")
  291. local DefaultOn = Instance.new("Frame")
  292. local Deco = Instance.new("TextLabel")
  293. local Deco_2 = Instance.new("ImageLabel")
  294. local DefaultOff = Instance.new("Frame")
  295. local Deco_3 = Instance.new("TextLabel")
  296. local Deco_4 = Instance.new("ImageLabel")
  297. local Deco_5 = Instance.new("TextLabel")
  298. local Deco_6 = Instance.new("TextLabel")
  299. local BaseStealer = Instance.new("ImageLabel")
  300. local BaseStealerContents = Instance.new("Frame")
  301. local Deco_7 = Instance.new("TextLabel")
  302. local Deco_8 = Instance.new("TextLabel")
  303. local BaseStealerButtons = Instance.new("Frame")
  304. local UIListLayout_3 = Instance.new("UIListLayout")
  305. local AutoRebirth = Instance.new("ImageLabel")
  306. local AutoRebirthContents = Instance.new("Frame")
  307. local AutoRebirthToggle = Instance.new("TextButton")
  308. local AutoRebirthOn = Instance.new("Frame")
  309. local Deco_9 = Instance.new("TextLabel")
  310. local Deco_10 = Instance.new("ImageLabel")
  311. local AutoRebirthOff = Instance.new("Frame")
  312. local Deco_11 = Instance.new("TextLabel")
  313. local Deco_12 = Instance.new("ImageLabel")
  314. local Deco_13 = Instance.new("TextLabel")
  315. local Deco_14 = Instance.new("TextLabel")
  316. local AutoRemote = Instance.new("ImageLabel")
  317. local AutoRemoteContents = Instance.new("Frame")
  318. local AutoRemoteToggle = Instance.new("TextButton")
  319. local AutoRemoteOn = Instance.new("Frame")
  320. local Title = Instance.new("TextLabel")
  321. local Fold_3 = Instance.new("ImageLabel")
  322. local AutoRemoteOff = Instance.new("Frame")
  323. local Title_2 = Instance.new("TextLabel")
  324. local Fold_4 = Instance.new("ImageLabel")
  325. local Deco_15 = Instance.new("TextLabel")
  326. local Deco_16 = Instance.new("TextLabel")
  327. local CloversTwitchCoins = Instance.new("ImageLabel")
  328. local CloversTwitchCoinsContents = Instance.new("Frame")
  329. local AddCloverButton = Instance.new("TextButton")
  330. local Deco_17 = Instance.new("ImageLabel")
  331. local AddTwitchCoinButton = Instance.new("TextButton")
  332. local Deco_18 = Instance.new("ImageLabel")
  333. local UIListLayout_4 = Instance.new("UIListLayout")
  334. local Notifications = Instance.new("ImageLabel")
  335. local NotificationsContents = Instance.new("Frame")
  336. local NotificationsToggle = Instance.new("TextButton")
  337. local NotificationsOn = Instance.new("Frame")
  338. local Deco_19 = Instance.new("TextLabel")
  339. local Deco_20 = Instance.new("ImageLabel")
  340. local NotificationsOff = Instance.new("Frame")
  341. local Deco_21 = Instance.new("TextLabel")
  342. local Deco_22 = Instance.new("ImageLabel")
  343. local Deco_23 = Instance.new("TextLabel")
  344. local Deco_24 = Instance.new("TextLabel")
  345. local AutoButton = Instance.new("ImageLabel")
  346. local AutoButtonContents = Instance.new("Frame")
  347. local AutoButtonToggle = Instance.new("TextButton")
  348. local AutoButtonOn = Instance.new("Frame")
  349. local Title_3 = Instance.new("TextLabel")
  350. local Fold_5 = Instance.new("ImageLabel")
  351. local AutoButtonOff = Instance.new("Frame")
  352. local Title_4 = Instance.new("TextLabel")
  353. local Fold_6 = Instance.new("ImageLabel")
  354. local Deco_25 = Instance.new("TextLabel")
  355. local Deco_26 = Instance.new("TextLabel")
  356. local AutoLoadout = Instance.new("ImageLabel")
  357. local AutoLoadoutContents = Instance.new("Frame")
  358. local AutoLoadout1Toggle = Instance.new("TextButton")
  359. local AutoLoadout1On = Instance.new("Frame")
  360. local Deco_27 = Instance.new("TextLabel")
  361. local Deco_28 = Instance.new("ImageLabel")
  362. local AutoLoadout1Off = Instance.new("Frame")
  363. local Deco_29 = Instance.new("TextLabel")
  364. local Deco_30 = Instance.new("ImageLabel")
  365. local Deco_31 = Instance.new("TextLabel")
  366. local Deco_32 = Instance.new("TextLabel")
  367. local Deco_33 = Instance.new("TextLabel")
  368. local AutoLoadout2Toggle = Instance.new("TextButton")
  369. local AutoLoadout2On = Instance.new("Frame")
  370. local Deco_34 = Instance.new("TextLabel")
  371. local Deco_35 = Instance.new("ImageLabel")
  372. local AutoLoadout2Off = Instance.new("Frame")
  373. local Deco_36 = Instance.new("TextLabel")
  374. local Deco_37 = Instance.new("ImageLabel")
  375. local AutoLoadout3Toggle = Instance.new("TextButton")
  376. local AutoLoadout3On = Instance.new("Frame")
  377. local Deco_38 = Instance.new("TextLabel")
  378. local Deco_39 = Instance.new("ImageLabel")
  379. local AutoLoadout3Off = Instance.new("Frame")
  380. local Deco_40 = Instance.new("TextLabel")
  381. local Deco_41 = Instance.new("ImageLabel")
  382. local Deco_42 = Instance.new("TextLabel")
  383. local OreBooster = Instance.new("ImageLabel")
  384. local OreBoosterContents = Instance.new("Frame")
  385. local OreBoosterButton = Instance.new("TextButton")
  386. local Deco_43 = Instance.new("ImageLabel")
  387. local Deco_44 = Instance.new("TextLabel")
  388. local Top = Instance.new("ImageLabel")
  389. local Title_5 = Instance.new("TextLabel")
  390. local Close = Instance.new("TextButton")
  391. local Depth = Instance.new("ImageLabel")
  392. local Depth_2 = Instance.new("ImageLabel")
  393. local UISizeConstraint = Instance.new("UISizeConstraint")
  394.  
  395. RocketHolder.Name = "RocketHolder"
  396. RocketHolder.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  397. RocketHolder.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  398. RocketHolder.ResetOnSpawn = false
  399.  
  400. Rocket.Name = "Rocket"
  401. Rocket.Parent = RocketHolder
  402. Rocket.AnchorPoint = Vector2.new(0.5, 0.5)
  403. Rocket.BackgroundColor3 = Color3.new(1, 1, 1)
  404. Rocket.BackgroundTransparency = 1
  405. Rocket.Position = UDim2.new(0.5, 0, 0.5, 0)
  406. Rocket.Size = UDim2.new(0.600000024, 0, 0.800000012, 0)
  407. Rocket.ZIndex = 5
  408. Rocket.Image = "rbxassetid://875052259"
  409. Rocket.ImageColor3 = Color3.new(0.294118, 0.294118, 0.294118)
  410. Rocket.ScaleType = Enum.ScaleType.Slice
  411. Rocket.SliceCenter = Rect.new(10, 10, 10, 10)
  412. Rocket.Visible = false
  413.  
  414. Contents.Name = "Contents"
  415. Contents.Parent = Rocket
  416. Contents.BackgroundColor3 = Color3.new(0.0705882, 0.0705882, 0.0705882)
  417. Contents.BackgroundTransparency = 1
  418. Contents.BorderSizePixel = 0
  419. Contents.Position = UDim2.new(0, 0, 0, 7)
  420. Contents.Selectable = false
  421. Contents.Size = UDim2.new(1, 0, 1, -14)
  422. Contents.ZIndex = 5
  423. Contents.CanvasSize = UDim2.new(0, 0, 0, 800)
  424.  
  425. UIListLayout.Parent = Contents
  426. UIListLayout.SortOrder = Enum.SortOrder.LayoutOrder
  427. UIListLayout.Padding = UDim.new(0.00999999978, 0)
  428.  
  429. UIPadding.Parent = Contents
  430.  
  431. DefaultButtons.Name = "DefaultButtons"
  432. DefaultButtons.Parent = Contents
  433. DefaultButtons.BackgroundColor3 = Color3.new(1, 1, 1)
  434. DefaultButtons.BackgroundTransparency = 1
  435. DefaultButtons.LayoutOrder = 1
  436. DefaultButtons.Size = UDim2.new(1, -20, 0, 40)
  437. DefaultButtons.Visible = false
  438. DefaultButtons.ZIndex = 5
  439. DefaultButtons.Image = "rbxassetid://875052259"
  440. DefaultButtons.ImageColor3 = Color3.new(0.227451, 0.227451, 0.227451)
  441. DefaultButtons.ScaleType = Enum.ScaleType.Slice
  442. DefaultButtons.SliceCenter = Rect.new(10, 10, 10, 10)
  443.  
  444. DefaultContents.Name = "DefaultContents"
  445. DefaultContents.Parent = DefaultButtons
  446. DefaultContents.BackgroundColor3 = Color3.new(1, 1, 1)
  447. DefaultContents.BackgroundTransparency = 1
  448. DefaultContents.BorderSizePixel = 0
  449. DefaultContents.Size = UDim2.new(1, 0, 0, 40)
  450. DefaultContents.ZIndex = 5
  451.  
  452. Button1.Name = "Button1"
  453. Button1.Parent = DefaultContents
  454. Button1.AnchorPoint = Vector2.new(0, 0.5)
  455. Button1.BackgroundColor3 = Color3.new(0.839216, 0.254902, 0.266667)
  456. Button1.BorderSizePixel = 0
  457. Button1.Position = UDim2.new(0.0500000007, 0, 0.5, 0)
  458. Button1.Size = UDim2.new(0.400000006, 0, 0, 30)
  459. Button1.ZIndex = 5
  460. Button1.Font = Enum.Font.ArialBold
  461. Button1.Text = "Button 1"
  462. Button1.TextScaled = true
  463. Button1.TextSize = 40
  464. Button1.TextWrapped = true
  465.  
  466. Fold.Name = "Fold"
  467. Fold.Parent = Button1
  468. Fold.AnchorPoint = Vector2.new(1, 0)
  469. Fold.BackgroundColor3 = Color3.new(1, 1, 1)
  470. Fold.BackgroundTransparency = 1
  471. Fold.Position = UDim2.new(1, 0, 0, 0)
  472. Fold.Size = UDim2.new(1, 0, 1, 0)
  473. Fold.SizeConstraint = Enum.SizeConstraint.RelativeYY
  474. Fold.ZIndex = 5
  475. Fold.Image = "rbxassetid://1042585012"
  476. Fold.ImageTransparency = 0.30000001192093
  477.  
  478. Button2.Name = "Button2"
  479. Button2.Parent = DefaultContents
  480. Button2.AnchorPoint = Vector2.new(0, 0.5)
  481. Button2.BackgroundColor3 = Color3.new(1, 0.537255, 0.270588)
  482. Button2.BorderSizePixel = 0
  483. Button2.Position = UDim2.new(0.449999988, 0, 0.5, 0)
  484. Button2.Size = UDim2.new(0.400000006, 0, 0, 30)
  485. Button2.ZIndex = 5
  486. Button2.Font = Enum.Font.ArialBold
  487. Button2.Text = "Button 2"
  488. Button2.TextScaled = true
  489. Button2.TextSize = 40
  490. Button2.TextWrapped = true
  491.  
  492. Fold_2.Name = "Fold"
  493. Fold_2.Parent = Button2
  494. Fold_2.AnchorPoint = Vector2.new(1, 0)
  495. Fold_2.BackgroundColor3 = Color3.new(1, 1, 1)
  496. Fold_2.BackgroundTransparency = 1
  497. Fold_2.Position = UDim2.new(1, 0, 0, 0)
  498. Fold_2.Size = UDim2.new(1, 0, 1, 0)
  499. Fold_2.SizeConstraint = Enum.SizeConstraint.RelativeYY
  500. Fold_2.ZIndex = 5
  501. Fold_2.Image = "rbxassetid://1042585012"
  502. Fold_2.ImageTransparency = 0.30000001192093
  503.  
  504. UIListLayout_2.Parent = DefaultContents
  505. UIListLayout_2.FillDirection = Enum.FillDirection.Horizontal
  506. UIListLayout_2.HorizontalAlignment = Enum.HorizontalAlignment.Center
  507. UIListLayout_2.VerticalAlignment = Enum.VerticalAlignment.Center
  508.  
  509. DefaultToggle.Name = "DefaultToggle"
  510. DefaultToggle.Parent = Contents
  511. DefaultToggle.BackgroundColor3 = Color3.new(1, 1, 1)
  512. DefaultToggle.BackgroundTransparency = 1
  513. DefaultToggle.LayoutOrder = 1
  514. DefaultToggle.Size = UDim2.new(1, -20, 0, 60)
  515. DefaultToggle.Visible = false
  516. DefaultToggle.ZIndex = 5
  517. DefaultToggle.Image = "rbxassetid://875052259"
  518. DefaultToggle.ImageColor3 = Color3.new(0.305882, 0.458824, 0.639216)
  519. DefaultToggle.ScaleType = Enum.ScaleType.Slice
  520. DefaultToggle.SliceCenter = Rect.new(10, 10, 10, 10)
  521.  
  522. DefaultContents_2.Name = "DefaultContents"
  523. DefaultContents_2.Parent = DefaultToggle
  524. DefaultContents_2.BackgroundColor3 = Color3.new(1, 1, 1)
  525. DefaultContents_2.BackgroundTransparency = 1
  526. DefaultContents_2.BorderSizePixel = 0
  527. DefaultContents_2.Size = UDim2.new(1, 0, 0, 40)
  528. DefaultContents_2.ZIndex = 5
  529.  
  530. DefaultToggle_2.Name = "DefaultToggle"
  531. DefaultToggle_2.Parent = DefaultContents_2
  532. DefaultToggle_2.AnchorPoint = Vector2.new(0, 0.5)
  533. DefaultToggle_2.BackgroundColor3 = Color3.new(0.741176, 0.741176, 0.741176)
  534. DefaultToggle_2.BorderSizePixel = 0
  535. DefaultToggle_2.Position = UDim2.new(0.550000012, 0, 0.5, 0)
  536. DefaultToggle_2.Size = UDim2.new(0.400000006, 0, 0, 30)
  537. DefaultToggle_2.ZIndex = 5
  538. DefaultToggle_2.Font = Enum.Font.ArialBold
  539. DefaultToggle_2.Text = ""
  540. DefaultToggle_2.TextScaled = true
  541. DefaultToggle_2.TextSize = 40
  542. DefaultToggle_2.TextWrapped = true
  543.  
  544. DefaultOn.Name = "DefaultOn"
  545. DefaultOn.Parent = DefaultToggle_2
  546. DefaultOn.BackgroundColor3 = Color3.new(0, 0.796079, 0)
  547. DefaultOn.BorderSizePixel = 0
  548. DefaultOn.Size = UDim2.new(0.400000006, 0, 1, 0)
  549. DefaultOn.ZIndex = 5
  550.  
  551. Deco.Name = "Deco"
  552. Deco.Parent = DefaultOn
  553. Deco.AnchorPoint = Vector2.new(0, 0.5)
  554. Deco.BackgroundColor3 = Color3.new(1, 1, 1)
  555. Deco.BackgroundTransparency = 1
  556. Deco.Position = UDim2.new(0, 0, 0.5, 0)
  557. Deco.Size = UDim2.new(1, 0, 1, 0)
  558. Deco.ZIndex = 5
  559. Deco.Font = Enum.Font.ArialBold
  560. Deco.Text = "ON"
  561. Deco.TextScaled = true
  562. Deco.TextSize = 14
  563. Deco.TextWrapped = true
  564. Deco.TextXAlignment = Enum.TextXAlignment.Left
  565.  
  566. Deco_2.Name = "Deco"
  567. Deco_2.Parent = DefaultOn
  568. Deco_2.AnchorPoint = Vector2.new(1, 0)
  569. Deco_2.BackgroundColor3 = Color3.new(1, 1, 1)
  570. Deco_2.BackgroundTransparency = 1
  571. Deco_2.Position = UDim2.new(1, 0, 0, 0)
  572. Deco_2.Size = UDim2.new(1, 0, 1, 0)
  573. Deco_2.SizeConstraint = Enum.SizeConstraint.RelativeYY
  574. Deco_2.ZIndex = 5
  575. Deco_2.Image = "rbxassetid://1042585012"
  576. Deco_2.ImageTransparency = 0.5
  577.  
  578. DefaultOff.Name = "DefaultOff"
  579. DefaultOff.Parent = DefaultToggle_2
  580. DefaultOff.AnchorPoint = Vector2.new(1, 0)
  581. DefaultOff.BackgroundColor3 = Color3.new(0.796079, 0, 0.0156863)
  582. DefaultOff.BorderSizePixel = 0
  583. DefaultOff.Position = UDim2.new(1, 0, 0, 0)
  584. DefaultOff.Size = UDim2.new(0.400000006, 0, 1, 0)
  585. DefaultOff.Visible = false
  586. DefaultOff.ZIndex = 5
  587.  
  588. Deco_3.Name = "Deco"
  589. Deco_3.Parent = DefaultOff
  590. Deco_3.AnchorPoint = Vector2.new(0, 0.5)
  591. Deco_3.BackgroundColor3 = Color3.new(1, 1, 1)
  592. Deco_3.BackgroundTransparency = 1
  593. Deco_3.Position = UDim2.new(0, 0, 0.5, 0)
  594. Deco_3.Size = UDim2.new(1, 0, 1, 0)
  595. Deco_3.ZIndex = 5
  596. Deco_3.Font = Enum.Font.ArialBold
  597. Deco_3.Text = "OFF"
  598. Deco_3.TextScaled = true
  599. Deco_3.TextSize = 14
  600. Deco_3.TextWrapped = true
  601. Deco_3.TextXAlignment = Enum.TextXAlignment.Right
  602.  
  603. Deco_4.Name = "Deco"
  604. Deco_4.Parent = DefaultOff
  605. Deco_4.AnchorPoint = Vector2.new(1, 0)
  606. Deco_4.BackgroundColor3 = Color3.new(1, 1, 1)
  607. Deco_4.BackgroundTransparency = 1
  608. Deco_4.Position = UDim2.new(1, 0, 0, 0)
  609. Deco_4.Size = UDim2.new(1, 0, 1, 0)
  610. Deco_4.SizeConstraint = Enum.SizeConstraint.RelativeYY
  611. Deco_4.ZIndex = 5
  612. Deco_4.Image = "rbxassetid://1042585012"
  613. Deco_4.ImageTransparency = 0.5
  614.  
  615. Deco_5.Name = "Deco"
  616. Deco_5.Parent = DefaultContents_2
  617. Deco_5.AnchorPoint = Vector2.new(0, 0.5)
  618. Deco_5.BackgroundColor3 = Color3.new(1, 1, 1)
  619. Deco_5.BackgroundTransparency = 1
  620. Deco_5.Position = UDim2.new(0, 0, 0.5, 0)
  621. Deco_5.Size = UDim2.new(0.5, 0, 0.699999988, 0)
  622. Deco_5.ZIndex = 5
  623. Deco_5.Font = Enum.Font.ArialBold
  624. Deco_5.Text = "Toggle:"
  625. Deco_5.TextScaled = true
  626. Deco_5.TextSize = 14
  627. Deco_5.TextWrapped = true
  628. Deco_5.TextXAlignment = Enum.TextXAlignment.Left
  629.  
  630. Deco_6.Name = "Deco"
  631. Deco_6.Parent = DefaultToggle
  632. Deco_6.BackgroundColor3 = Color3.new(1, 1, 1)
  633. Deco_6.BackgroundTransparency = 1
  634. Deco_6.Position = UDim2.new(0, 0, 1, -20)
  635. Deco_6.Size = UDim2.new(1, 0, 0, 20)
  636. Deco_6.ZIndex = 5
  637. Deco_6.Font = Enum.Font.Arial
  638. Deco_6.Text = "Some hint text."
  639. Deco_6.TextColor3 = Color3.new(0, 0, 0)
  640. Deco_6.TextScaled = true
  641. Deco_6.TextSize = 14
  642. Deco_6.TextTransparency = 0.69999998807907
  643. Deco_6.TextWrapped = true
  644.  
  645. BaseStealer.Name = "BaseStealer"
  646. BaseStealer.Parent = Contents
  647. BaseStealer.BackgroundColor3 = Color3.new(1, 1, 1)
  648. BaseStealer.BackgroundTransparency = 1
  649. BaseStealer.LayoutOrder = 8
  650. BaseStealer.Size = UDim2.new(1, -20, 0, 240)
  651. BaseStealer.ZIndex = 5
  652. BaseStealer.Image = "rbxassetid://875052259"
  653. BaseStealer.ImageColor3 = Color3.new(0.498039, 0.301961, 0.639216)
  654. BaseStealer.ScaleType = Enum.ScaleType.Slice
  655. BaseStealer.SliceCenter = Rect.new(10, 10, 10, 10)
  656.  
  657. BaseStealerContents.Name = "BaseStealerContents"
  658. BaseStealerContents.Parent = BaseStealer
  659. BaseStealerContents.BackgroundColor3 = Color3.new(1, 1, 1)
  660. BaseStealerContents.BackgroundTransparency = 1
  661. BaseStealerContents.BorderSizePixel = 0
  662. BaseStealerContents.Size = UDim2.new(1, 0, 0, 40)
  663. BaseStealerContents.ZIndex = 5
  664.  
  665. Deco_7.Name = "Deco"
  666. Deco_7.Parent = BaseStealerContents
  667. Deco_7.AnchorPoint = Vector2.new(0, 0.5)
  668. Deco_7.BackgroundColor3 = Color3.new(1, 1, 1)
  669. Deco_7.BackgroundTransparency = 1
  670. Deco_7.Position = UDim2.new(0, 0, 0.5, 0)
  671. Deco_7.Size = UDim2.new(0.5, 0, 0.699999988, 0)
  672. Deco_7.ZIndex = 5
  673. Deco_7.Font = Enum.Font.ArialBold
  674. Deco_7.Text = "Base Stealer:"
  675. Deco_7.TextScaled = true
  676. Deco_7.TextSize = 14
  677. Deco_7.TextWrapped = true
  678. Deco_7.TextXAlignment = Enum.TextXAlignment.Left
  679.  
  680. Deco_8.Name = "Deco"
  681. Deco_8.Parent = BaseStealer
  682. Deco_8.BackgroundColor3 = Color3.new(1, 1, 1)
  683. Deco_8.BackgroundTransparency = 1
  684. Deco_8.Position = UDim2.new(0, 0, 1, -20)
  685. Deco_8.Size = UDim2.new(1, 0, 0, 20)
  686. Deco_8.ZIndex = 5
  687. Deco_8.Font = Enum.Font.Arial
  688. Deco_8.Text = "Steal a players base and load it onto yours."
  689. Deco_8.TextColor3 = Color3.new(0, 0, 0)
  690. Deco_8.TextScaled = true
  691. Deco_8.TextSize = 14
  692. Deco_8.TextTransparency = 0.69999998807907
  693. Deco_8.TextWrapped = true
  694.  
  695. BaseStealerButtons.Name = "BaseStealerButtons"
  696. BaseStealerButtons.Parent = BaseStealer
  697. BaseStealerButtons.BackgroundColor3 = Color3.new(1, 1, 1)
  698. BaseStealerButtons.BackgroundTransparency = 1
  699. BaseStealerButtons.BorderSizePixel = 0
  700. BaseStealerButtons.Position = UDim2.new(0, 0, 0, 40)
  701. BaseStealerButtons.Size = UDim2.new(1, 0, 0, 140)
  702. BaseStealerButtons.ZIndex = 5
  703.  
  704. UIListLayout_3.Parent = BaseStealerButtons
  705. UIListLayout_3.HorizontalAlignment = Enum.HorizontalAlignment.Center
  706.  
  707. AutoRebirth.Name = "AutoRebirth"
  708. AutoRebirth.Parent = Contents
  709. AutoRebirth.BackgroundColor3 = Color3.new(1, 1, 1)
  710. AutoRebirth.BackgroundTransparency = 1
  711. AutoRebirth.LayoutOrder = 1
  712. AutoRebirth.Size = UDim2.new(1, -20, 0, 60)
  713. AutoRebirth.ZIndex = 5
  714. AutoRebirth.Image = "rbxassetid://875052259"
  715. AutoRebirth.ImageColor3 = Color3.new(0.639216, 0.505882, 0.278431)
  716. AutoRebirth.ScaleType = Enum.ScaleType.Slice
  717. AutoRebirth.SliceCenter = Rect.new(10, 10, 10, 10)
  718.  
  719. AutoRebirthContents.Name = "AutoRebirthContents"
  720. AutoRebirthContents.Parent = AutoRebirth
  721. AutoRebirthContents.BackgroundColor3 = Color3.new(1, 1, 1)
  722. AutoRebirthContents.BackgroundTransparency = 1
  723. AutoRebirthContents.BorderSizePixel = 0
  724. AutoRebirthContents.Size = UDim2.new(1, 0, 0, 40)
  725. AutoRebirthContents.ZIndex = 5
  726.  
  727. AutoRebirthToggle.Name = "AutoRebirthToggle"
  728. AutoRebirthToggle.Parent = AutoRebirthContents
  729. AutoRebirthToggle.AnchorPoint = Vector2.new(0, 0.5)
  730. AutoRebirthToggle.BackgroundColor3 = Color3.new(0.741176, 0.741176, 0.741176)
  731. AutoRebirthToggle.BorderSizePixel = 0
  732. AutoRebirthToggle.Position = UDim2.new(0.550000012, 0, 0.5, 0)
  733. AutoRebirthToggle.Size = UDim2.new(0.400000006, 0, 0, 30)
  734. AutoRebirthToggle.ZIndex = 5
  735. AutoRebirthToggle.Font = Enum.Font.ArialBold
  736. AutoRebirthToggle.Text = ""
  737. AutoRebirthToggle.TextScaled = true
  738. AutoRebirthToggle.TextSize = 40
  739. AutoRebirthToggle.TextWrapped = true
  740.  
  741. AutoRebirthOn.Name = "AutoRebirthOn"
  742. AutoRebirthOn.Parent = AutoRebirthToggle
  743. AutoRebirthOn.BackgroundColor3 = Color3.new(0, 0.796079, 0)
  744. AutoRebirthOn.BorderSizePixel = 0
  745. AutoRebirthOn.Size = UDim2.new(0.400000006, 0, 1, 0)
  746. AutoRebirthOn.Visible = false
  747. AutoRebirthOn.ZIndex = 5
  748.  
  749. Deco_9.Name = "Deco"
  750. Deco_9.Parent = AutoRebirthOn
  751. Deco_9.AnchorPoint = Vector2.new(0, 0.5)
  752. Deco_9.BackgroundColor3 = Color3.new(1, 1, 1)
  753. Deco_9.BackgroundTransparency = 1
  754. Deco_9.Position = UDim2.new(0, 0, 0.5, 0)
  755. Deco_9.Size = UDim2.new(1, 0, 1, 0)
  756. Deco_9.ZIndex = 5
  757. Deco_9.Font = Enum.Font.ArialBold
  758. Deco_9.Text = "ON"
  759. Deco_9.TextScaled = true
  760. Deco_9.TextSize = 14
  761. Deco_9.TextWrapped = true
  762. Deco_9.TextXAlignment = Enum.TextXAlignment.Left
  763.  
  764. Deco_10.Name = "Deco"
  765. Deco_10.Parent = AutoRebirthOn
  766. Deco_10.AnchorPoint = Vector2.new(1, 0)
  767. Deco_10.BackgroundColor3 = Color3.new(1, 1, 1)
  768. Deco_10.BackgroundTransparency = 1
  769. Deco_10.Position = UDim2.new(1, 0, 0, 0)
  770. Deco_10.Size = UDim2.new(1, 0, 1, 0)
  771. Deco_10.SizeConstraint = Enum.SizeConstraint.RelativeYY
  772. Deco_10.ZIndex = 5
  773. Deco_10.Image = "rbxassetid://1042585012"
  774. Deco_10.ImageTransparency = 0.5
  775.  
  776. AutoRebirthOff.Name = "AutoRebirthOff"
  777. AutoRebirthOff.Parent = AutoRebirthToggle
  778. AutoRebirthOff.AnchorPoint = Vector2.new(1, 0)
  779. AutoRebirthOff.BackgroundColor3 = Color3.new(0.796079, 0, 0.0156863)
  780. AutoRebirthOff.BorderSizePixel = 0
  781. AutoRebirthOff.Position = UDim2.new(1, 0, 0, 0)
  782. AutoRebirthOff.Size = UDim2.new(0.400000006, 0, 1, 0)
  783. AutoRebirthOff.ZIndex = 5
  784.  
  785. Deco_11.Name = "Deco"
  786. Deco_11.Parent = AutoRebirthOff
  787. Deco_11.AnchorPoint = Vector2.new(0, 0.5)
  788. Deco_11.BackgroundColor3 = Color3.new(1, 1, 1)
  789. Deco_11.BackgroundTransparency = 1
  790. Deco_11.Position = UDim2.new(0, 0, 0.5, 0)
  791. Deco_11.Size = UDim2.new(1, 0, 1, 0)
  792. Deco_11.ZIndex = 5
  793. Deco_11.Font = Enum.Font.ArialBold
  794. Deco_11.Text = "OFF"
  795. Deco_11.TextScaled = true
  796. Deco_11.TextSize = 14
  797. Deco_11.TextWrapped = true
  798. Deco_11.TextXAlignment = Enum.TextXAlignment.Right
  799.  
  800. Deco_12.Name = "Deco"
  801. Deco_12.Parent = AutoRebirthOff
  802. Deco_12.AnchorPoint = Vector2.new(1, 0)
  803. Deco_12.BackgroundColor3 = Color3.new(1, 1, 1)
  804. Deco_12.BackgroundTransparency = 1
  805. Deco_12.Position = UDim2.new(1, 0, 0, 0)
  806. Deco_12.Size = UDim2.new(1, 0, 1, 0)
  807. Deco_12.SizeConstraint = Enum.SizeConstraint.RelativeYY
  808. Deco_12.ZIndex = 5
  809. Deco_12.Image = "rbxassetid://1042585012"
  810. Deco_12.ImageTransparency = 0.5
  811.  
  812. Deco_13.Name = "Deco"
  813. Deco_13.Parent = AutoRebirthContents
  814. Deco_13.AnchorPoint = Vector2.new(0, 0.5)
  815. Deco_13.BackgroundColor3 = Color3.new(1, 1, 1)
  816. Deco_13.BackgroundTransparency = 1
  817. Deco_13.Position = UDim2.new(0, 0, 0.5, 0)
  818. Deco_13.Size = UDim2.new(0.5, 0, 0.699999988, 0)
  819. Deco_13.ZIndex = 5
  820. Deco_13.Font = Enum.Font.ArialBold
  821. Deco_13.Text = "Auto-Rebirth:"
  822. Deco_13.TextScaled = true
  823. Deco_13.TextSize = 14
  824. Deco_13.TextWrapped = true
  825. Deco_13.TextXAlignment = Enum.TextXAlignment.Left
  826.  
  827. Deco_14.Name = "Deco"
  828. Deco_14.Parent = AutoRebirth
  829. Deco_14.BackgroundColor3 = Color3.new(1, 1, 1)
  830. Deco_14.BackgroundTransparency = 1
  831. Deco_14.Position = UDim2.new(0, 0, 1, -20)
  832. Deco_14.Size = UDim2.new(1, 0, 0, 20)
  833. Deco_14.ZIndex = 5
  834. Deco_14.Font = Enum.Font.Arial
  835. Deco_14.Text = "Rebirths as soon as you can."
  836. Deco_14.TextColor3 = Color3.new(0, 0, 0)
  837. Deco_14.TextScaled = true
  838. Deco_14.TextSize = 14
  839. Deco_14.TextTransparency = 0.69999998807907
  840. Deco_14.TextWrapped = true
  841.  
  842. AutoRemote.Name = "AutoRemote"
  843. AutoRemote.Parent = Contents
  844. AutoRemote.BackgroundColor3 = Color3.new(1, 1, 1)
  845. AutoRemote.BackgroundTransparency = 1
  846. AutoRemote.LayoutOrder = 2
  847. AutoRemote.Size = UDim2.new(1, -20, 0, 60)
  848. AutoRemote.ZIndex = 5
  849. AutoRemote.Image = "rbxassetid://875052259"
  850. AutoRemote.ImageColor3 = Color3.new(0.47451, 0.639216, 0.258824)
  851. AutoRemote.ScaleType = Enum.ScaleType.Slice
  852. AutoRemote.SliceCenter = Rect.new(10, 10, 10, 10)
  853.  
  854. AutoRemoteContents.Name = "AutoRemoteContents"
  855. AutoRemoteContents.Parent = AutoRemote
  856. AutoRemoteContents.BackgroundColor3 = Color3.new(1, 1, 1)
  857. AutoRemoteContents.BackgroundTransparency = 1
  858. AutoRemoteContents.BorderSizePixel = 0
  859. AutoRemoteContents.Size = UDim2.new(1, 0, 0, 40)
  860. AutoRemoteContents.ZIndex = 5
  861.  
  862. AutoRemoteToggle.Name = "AutoRemoteToggle"
  863. AutoRemoteToggle.Parent = AutoRemoteContents
  864. AutoRemoteToggle.AnchorPoint = Vector2.new(0, 0.5)
  865. AutoRemoteToggle.BackgroundColor3 = Color3.new(0.741176, 0.741176, 0.741176)
  866. AutoRemoteToggle.BorderSizePixel = 0
  867. AutoRemoteToggle.Position = UDim2.new(0.550000012, 0, 0.5, 0)
  868. AutoRemoteToggle.Size = UDim2.new(0.400000006, 0, 0, 30)
  869. AutoRemoteToggle.ZIndex = 5
  870. AutoRemoteToggle.Font = Enum.Font.ArialBold
  871. AutoRemoteToggle.Text = ""
  872. AutoRemoteToggle.TextScaled = true
  873. AutoRemoteToggle.TextSize = 40
  874. AutoRemoteToggle.TextWrapped = true
  875.  
  876. AutoRemoteOn.Name = "AutoRemoteOn"
  877. AutoRemoteOn.Parent = AutoRemoteToggle
  878. AutoRemoteOn.BackgroundColor3 = Color3.new(0, 0.796079, 0)
  879. AutoRemoteOn.BorderSizePixel = 0
  880. AutoRemoteOn.Size = UDim2.new(0.400000006, 0, 1, 0)
  881. AutoRemoteOn.Visible = false
  882. AutoRemoteOn.ZIndex = 5
  883.  
  884. Title.Name = "Title"
  885. Title.Parent = AutoRemoteOn
  886. Title.AnchorPoint = Vector2.new(0, 0.5)
  887. Title.BackgroundColor3 = Color3.new(1, 1, 1)
  888. Title.BackgroundTransparency = 1
  889. Title.Position = UDim2.new(0, 0, 0.5, 0)
  890. Title.Size = UDim2.new(1, 0, 1, 0)
  891. Title.ZIndex = 5
  892. Title.Font = Enum.Font.ArialBold
  893. Title.Text = "ON"
  894. Title.TextScaled = true
  895. Title.TextSize = 14
  896. Title.TextWrapped = true
  897. Title.TextXAlignment = Enum.TextXAlignment.Left
  898.  
  899. Fold_3.Name = "Fold"
  900. Fold_3.Parent = AutoRemoteOn
  901. Fold_3.AnchorPoint = Vector2.new(1, 0)
  902. Fold_3.BackgroundColor3 = Color3.new(1, 1, 1)
  903. Fold_3.BackgroundTransparency = 1
  904. Fold_3.Position = UDim2.new(1, 0, 0, 0)
  905. Fold_3.Size = UDim2.new(1, 0, 1, 0)
  906. Fold_3.SizeConstraint = Enum.SizeConstraint.RelativeYY
  907. Fold_3.ZIndex = 5
  908. Fold_3.Image = "rbxassetid://1042585012"
  909. Fold_3.ImageTransparency = 0.5
  910.  
  911. AutoRemoteOff.Name = "AutoRemoteOff"
  912. AutoRemoteOff.Parent = AutoRemoteToggle
  913. AutoRemoteOff.AnchorPoint = Vector2.new(1, 0)
  914. AutoRemoteOff.BackgroundColor3 = Color3.new(0.796079, 0, 0.0156863)
  915. AutoRemoteOff.BorderSizePixel = 0
  916. AutoRemoteOff.Position = UDim2.new(1, 0, 0, 0)
  917. AutoRemoteOff.Size = UDim2.new(0.400000006, 0, 1, 0)
  918. AutoRemoteOff.ZIndex = 5
  919.  
  920. Title_2.Name = "Title"
  921. Title_2.Parent = AutoRemoteOff
  922. Title_2.AnchorPoint = Vector2.new(0, 0.5)
  923. Title_2.BackgroundColor3 = Color3.new(1, 1, 1)
  924. Title_2.BackgroundTransparency = 1
  925. Title_2.Position = UDim2.new(0, 0, 0.5, 0)
  926. Title_2.Size = UDim2.new(1, 0, 1, 0)
  927. Title_2.ZIndex = 5
  928. Title_2.Font = Enum.Font.ArialBold
  929. Title_2.Text = "OFF"
  930. Title_2.TextScaled = true
  931. Title_2.TextSize = 14
  932. Title_2.TextWrapped = true
  933. Title_2.TextXAlignment = Enum.TextXAlignment.Right
  934.  
  935. Fold_4.Name = "Fold"
  936. Fold_4.Parent = AutoRemoteOff
  937. Fold_4.AnchorPoint = Vector2.new(1, 0)
  938. Fold_4.BackgroundColor3 = Color3.new(1, 1, 1)
  939. Fold_4.BackgroundTransparency = 1
  940. Fold_4.Position = UDim2.new(1, 0, 0, 0)
  941. Fold_4.Size = UDim2.new(1, 0, 1, 0)
  942. Fold_4.SizeConstraint = Enum.SizeConstraint.RelativeYY
  943. Fold_4.ZIndex = 5
  944. Fold_4.Image = "rbxassetid://1042585012"
  945. Fold_4.ImageTransparency = 0.5
  946.  
  947. Deco_15.Name = "Deco"
  948. Deco_15.Parent = AutoRemoteContents
  949. Deco_15.AnchorPoint = Vector2.new(0, 0.5)
  950. Deco_15.BackgroundColor3 = Color3.new(1, 1, 1)
  951. Deco_15.BackgroundTransparency = 1
  952. Deco_15.Position = UDim2.new(0, 0, 0.5, 0)
  953. Deco_15.Size = UDim2.new(0.5, 0, 0.699999988, 0)
  954. Deco_15.ZIndex = 5
  955. Deco_15.Font = Enum.Font.ArialBold
  956. Deco_15.Text = "Auto-Remote:"
  957. Deco_15.TextScaled = true
  958. Deco_15.TextSize = 14
  959. Deco_15.TextWrapped = true
  960. Deco_15.TextXAlignment = Enum.TextXAlignment.Left
  961.  
  962. Deco_16.Name = "Deco"
  963. Deco_16.Parent = AutoRemote
  964. Deco_16.BackgroundColor3 = Color3.new(1, 1, 1)
  965. Deco_16.BackgroundTransparency = 1
  966. Deco_16.Position = UDim2.new(0, 0, 1, -20)
  967. Deco_16.Size = UDim2.new(1, 0, 0, 20)
  968. Deco_16.ZIndex = 5
  969. Deco_16.Font = Enum.Font.Arial
  970. Deco_16.Text = "Automatically presses the remote for you."
  971. Deco_16.TextColor3 = Color3.new(0, 0, 0)
  972. Deco_16.TextScaled = true
  973. Deco_16.TextSize = 14
  974. Deco_16.TextTransparency = 0.69999998807907
  975. Deco_16.TextWrapped = true
  976.  
  977. CloversTwitchCoins.Name = "CloversTwitchCoins"
  978. CloversTwitchCoins.Parent = Contents
  979. CloversTwitchCoins.BackgroundColor3 = Color3.new(1, 1, 1)
  980. CloversTwitchCoins.BackgroundTransparency = 1
  981. CloversTwitchCoins.LayoutOrder = 6
  982. CloversTwitchCoins.Size = UDim2.new(1, -20, 0, 40)
  983. CloversTwitchCoins.ZIndex = 5
  984. CloversTwitchCoins.Image = "rbxassetid://875052259"
  985. CloversTwitchCoins.ImageColor3 = Color3.new(0.227451, 0.227451, 0.227451)
  986. CloversTwitchCoins.ScaleType = Enum.ScaleType.Slice
  987. CloversTwitchCoins.SliceCenter = Rect.new(10, 10, 10, 10)
  988.  
  989. CloversTwitchCoinsContents.Name = "CloversTwitchCoinsContents"
  990. CloversTwitchCoinsContents.Parent = CloversTwitchCoins
  991. CloversTwitchCoinsContents.BackgroundColor3 = Color3.new(1, 1, 1)
  992. CloversTwitchCoinsContents.BackgroundTransparency = 1
  993. CloversTwitchCoinsContents.BorderSizePixel = 0
  994. CloversTwitchCoinsContents.Size = UDim2.new(1, 0, 0, 40)
  995. CloversTwitchCoinsContents.ZIndex = 5
  996.  
  997. AddCloverButton.Name = "AddCloverButton"
  998. AddCloverButton.Parent = CloversTwitchCoinsContents
  999. AddCloverButton.AnchorPoint = Vector2.new(0, 0.5)
  1000. AddCloverButton.BackgroundColor3 = Color3.new(0.286275, 0.839216, 0.247059)
  1001. AddCloverButton.BorderSizePixel = 0
  1002. AddCloverButton.Position = UDim2.new(0.0500000007, 0, 0.5, 0)
  1003. AddCloverButton.Size = UDim2.new(0.400000006, 0, 0, 30)
  1004. AddCloverButton.ZIndex = 5
  1005. AddCloverButton.Font = Enum.Font.ArialBold
  1006. AddCloverButton.Text = "+1 Clover"
  1007. AddCloverButton.TextScaled = true
  1008. AddCloverButton.TextSize = 40
  1009. AddCloverButton.TextWrapped = true
  1010.  
  1011. Deco_17.Name = "Deco"
  1012. Deco_17.Parent = AddCloverButton
  1013. Deco_17.AnchorPoint = Vector2.new(1, 0)
  1014. Deco_17.BackgroundColor3 = Color3.new(1, 1, 1)
  1015. Deco_17.BackgroundTransparency = 1
  1016. Deco_17.Position = UDim2.new(1, 0, 0, 0)
  1017. Deco_17.Size = UDim2.new(1, 0, 1, 0)
  1018. Deco_17.SizeConstraint = Enum.SizeConstraint.RelativeYY
  1019. Deco_17.ZIndex = 5
  1020. Deco_17.Image = "rbxassetid://1042585012"
  1021. Deco_17.ImageTransparency = 0.30000001192093
  1022.  
  1023. AddTwitchCoinButton.Name = "AddTwitchCoinButton"
  1024. AddTwitchCoinButton.Parent = CloversTwitchCoinsContents
  1025. AddTwitchCoinButton.AnchorPoint = Vector2.new(0, 0.5)
  1026. AddTwitchCoinButton.BackgroundColor3 = Color3.new(0.741176, 0.290196, 1)
  1027. AddTwitchCoinButton.BorderSizePixel = 0
  1028. AddTwitchCoinButton.Position = UDim2.new(0.449999988, 0, 0.5, 0)
  1029. AddTwitchCoinButton.Size = UDim2.new(0.400000006, 0, 0, 30)
  1030. AddTwitchCoinButton.ZIndex = 5
  1031. AddTwitchCoinButton.Font = Enum.Font.ArialBold
  1032. AddTwitchCoinButton.Text = "+1 Twitch Coin"
  1033. AddTwitchCoinButton.TextScaled = true
  1034. AddTwitchCoinButton.TextSize = 40
  1035. AddTwitchCoinButton.TextWrapped = true
  1036.  
  1037. Deco_18.Name = "Deco"
  1038. Deco_18.Parent = AddTwitchCoinButton
  1039. Deco_18.AnchorPoint = Vector2.new(1, 0)
  1040. Deco_18.BackgroundColor3 = Color3.new(1, 1, 1)
  1041. Deco_18.BackgroundTransparency = 1
  1042. Deco_18.Position = UDim2.new(1, 0, 0, 0)
  1043. Deco_18.Size = UDim2.new(1, 0, 1, 0)
  1044. Deco_18.SizeConstraint = Enum.SizeConstraint.RelativeYY
  1045. Deco_18.ZIndex = 5
  1046. Deco_18.Image = "rbxassetid://1042585012"
  1047. Deco_18.ImageTransparency = 0.30000001192093
  1048.  
  1049. UIListLayout_4.Parent = CloversTwitchCoinsContents
  1050. UIListLayout_4.FillDirection = Enum.FillDirection.Horizontal
  1051. UIListLayout_4.HorizontalAlignment = Enum.HorizontalAlignment.Center
  1052. UIListLayout_4.VerticalAlignment = Enum.VerticalAlignment.Center
  1053.  
  1054. Notifications.Name = "Notifications"
  1055. Notifications.Parent = Contents
  1056. Notifications.BackgroundColor3 = Color3.new(1, 1, 1)
  1057. Notifications.BackgroundTransparency = 1
  1058. Notifications.LayoutOrder = 4
  1059. Notifications.Size = UDim2.new(1, -20, 0, 60)
  1060. Notifications.ZIndex = 5
  1061. Notifications.Image = "rbxassetid://875052259"
  1062. Notifications.ImageColor3 = Color3.new(0.231373, 0.509804, 0.639216)
  1063. Notifications.ScaleType = Enum.ScaleType.Slice
  1064. Notifications.SliceCenter = Rect.new(10, 10, 10, 10)
  1065.  
  1066. NotificationsContents.Name = "NotificationsContents"
  1067. NotificationsContents.Parent = Notifications
  1068. NotificationsContents.BackgroundColor3 = Color3.new(1, 1, 1)
  1069. NotificationsContents.BackgroundTransparency = 1
  1070. NotificationsContents.BorderSizePixel = 0
  1071. NotificationsContents.Size = UDim2.new(1, 0, 0, 40)
  1072. NotificationsContents.ZIndex = 5
  1073.  
  1074. NotificationsToggle.Name = "NotificationsToggle"
  1075. NotificationsToggle.Parent = NotificationsContents
  1076. NotificationsToggle.AnchorPoint = Vector2.new(0, 0.5)
  1077. NotificationsToggle.BackgroundColor3 = Color3.new(0.741176, 0.741176, 0.741176)
  1078. NotificationsToggle.BorderSizePixel = 0
  1079. NotificationsToggle.Position = UDim2.new(0.550000012, 0, 0.5, 0)
  1080. NotificationsToggle.Size = UDim2.new(0.400000006, 0, 0, 30)
  1081. NotificationsToggle.ZIndex = 5
  1082. NotificationsToggle.Font = Enum.Font.ArialBold
  1083. NotificationsToggle.Text = ""
  1084. NotificationsToggle.TextScaled = true
  1085. NotificationsToggle.TextSize = 40
  1086. NotificationsToggle.TextWrapped = true
  1087.  
  1088. NotificationsOn.Name = "NotificationsOn"
  1089. NotificationsOn.Parent = NotificationsToggle
  1090. NotificationsOn.BackgroundColor3 = Color3.new(0, 0.796079, 0)
  1091. NotificationsOn.BorderSizePixel = 0
  1092. NotificationsOn.Size = UDim2.new(0.400000006, 0, 1, 0)
  1093. NotificationsOn.ZIndex = 5
  1094.  
  1095. Deco_19.Name = "Deco"
  1096. Deco_19.Parent = NotificationsOn
  1097. Deco_19.AnchorPoint = Vector2.new(0, 0.5)
  1098. Deco_19.BackgroundColor3 = Color3.new(1, 1, 1)
  1099. Deco_19.BackgroundTransparency = 1
  1100. Deco_19.Position = UDim2.new(0, 0, 0.5, 0)
  1101. Deco_19.Size = UDim2.new(1, 0, 1, 0)
  1102. Deco_19.ZIndex = 5
  1103. Deco_19.Font = Enum.Font.ArialBold
  1104. Deco_19.Text = "ON"
  1105. Deco_19.TextScaled = true
  1106. Deco_19.TextSize = 14
  1107. Deco_19.TextWrapped = true
  1108. Deco_19.TextXAlignment = Enum.TextXAlignment.Left
  1109.  
  1110. Deco_20.Name = "Deco"
  1111. Deco_20.Parent = NotificationsOn
  1112. Deco_20.AnchorPoint = Vector2.new(1, 0)
  1113. Deco_20.BackgroundColor3 = Color3.new(1, 1, 1)
  1114. Deco_20.BackgroundTransparency = 1
  1115. Deco_20.Position = UDim2.new(1, 0, 0, 0)
  1116. Deco_20.Size = UDim2.new(1, 0, 1, 0)
  1117. Deco_20.SizeConstraint = Enum.SizeConstraint.RelativeYY
  1118. Deco_20.ZIndex = 5
  1119. Deco_20.Image = "rbxassetid://1042585012"
  1120. Deco_20.ImageTransparency = 0.5
  1121.  
  1122. NotificationsOff.Name = "NotificationsOff"
  1123. NotificationsOff.Parent = NotificationsToggle
  1124. NotificationsOff.AnchorPoint = Vector2.new(1, 0)
  1125. NotificationsOff.BackgroundColor3 = Color3.new(0.796079, 0, 0.0156863)
  1126. NotificationsOff.BorderSizePixel = 0
  1127. NotificationsOff.Position = UDim2.new(1, 0, 0, 0)
  1128. NotificationsOff.Size = UDim2.new(0.400000006, 0, 1, 0)
  1129. NotificationsOff.Visible = false
  1130. NotificationsOff.ZIndex = 5
  1131.  
  1132. Deco_21.Name = "Deco"
  1133. Deco_21.Parent = NotificationsOff
  1134. Deco_21.AnchorPoint = Vector2.new(0, 0.5)
  1135. Deco_21.BackgroundColor3 = Color3.new(1, 1, 1)
  1136. Deco_21.BackgroundTransparency = 1
  1137. Deco_21.Position = UDim2.new(0, 0, 0.5, 0)
  1138. Deco_21.Size = UDim2.new(1, 0, 1, 0)
  1139. Deco_21.ZIndex = 5
  1140. Deco_21.Font = Enum.Font.ArialBold
  1141. Deco_21.Text = "OFF"
  1142. Deco_21.TextScaled = true
  1143. Deco_21.TextSize = 14
  1144. Deco_21.TextWrapped = true
  1145. Deco_21.TextXAlignment = Enum.TextXAlignment.Right
  1146.  
  1147. Deco_22.Name = "Deco"
  1148. Deco_22.Parent = NotificationsOff
  1149. Deco_22.AnchorPoint = Vector2.new(1, 0)
  1150. Deco_22.BackgroundColor3 = Color3.new(1, 1, 1)
  1151. Deco_22.BackgroundTransparency = 1
  1152. Deco_22.Position = UDim2.new(1, 0, 0, 0)
  1153. Deco_22.Size = UDim2.new(1, 0, 1, 0)
  1154. Deco_22.SizeConstraint = Enum.SizeConstraint.RelativeYY
  1155. Deco_22.ZIndex = 5
  1156. Deco_22.Image = "rbxassetid://1042585012"
  1157. Deco_22.ImageTransparency = 0.5
  1158.  
  1159. Deco_23.Name = "Deco"
  1160. Deco_23.Parent = NotificationsContents
  1161. Deco_23.AnchorPoint = Vector2.new(0, 0.5)
  1162. Deco_23.BackgroundColor3 = Color3.new(1, 1, 1)
  1163. Deco_23.BackgroundTransparency = 1
  1164. Deco_23.Position = UDim2.new(0, 0, 0.5, 0)
  1165. Deco_23.Size = UDim2.new(0.5, 0, 0.699999988, 0)
  1166. Deco_23.ZIndex = 5
  1167. Deco_23.Font = Enum.Font.ArialBold
  1168. Deco_23.Text = "Notifications:"
  1169. Deco_23.TextScaled = true
  1170. Deco_23.TextSize = 14
  1171. Deco_23.TextWrapped = true
  1172. Deco_23.TextXAlignment = Enum.TextXAlignment.Left
  1173.  
  1174. Deco_24.Name = "Deco"
  1175. Deco_24.Parent = Notifications
  1176. Deco_24.BackgroundColor3 = Color3.new(1, 1, 1)
  1177. Deco_24.BackgroundTransparency = 1
  1178. Deco_24.Position = UDim2.new(0, 0, 1, -20)
  1179. Deco_24.Size = UDim2.new(1, 0, 0, 20)
  1180. Deco_24.ZIndex = 5
  1181. Deco_24.Font = Enum.Font.Arial
  1182. Deco_24.Text = "Toggles collision notifications, etc."
  1183. Deco_24.TextColor3 = Color3.new(0, 0, 0)
  1184. Deco_24.TextScaled = true
  1185. Deco_24.TextSize = 14
  1186. Deco_24.TextTransparency = 0.69999998807907
  1187. Deco_24.TextWrapped = true
  1188.  
  1189. AutoButton.Name = "AutoButton"
  1190. AutoButton.Parent = Contents
  1191. AutoButton.BackgroundColor3 = Color3.new(1, 1, 1)
  1192. AutoButton.BackgroundTransparency = 1
  1193. AutoButton.LayoutOrder = 3
  1194. AutoButton.Size = UDim2.new(1, -20, 0, 60)
  1195. AutoButton.ZIndex = 5
  1196. AutoButton.Image = "rbxassetid://875052259"
  1197. AutoButton.ImageColor3 = Color3.new(0.243137, 0.639216, 0.403922)
  1198. AutoButton.ScaleType = Enum.ScaleType.Slice
  1199. AutoButton.SliceCenter = Rect.new(10, 10, 10, 10)
  1200.  
  1201. AutoButtonContents.Name = "AutoButtonContents"
  1202. AutoButtonContents.Parent = AutoButton
  1203. AutoButtonContents.BackgroundColor3 = Color3.new(1, 1, 1)
  1204. AutoButtonContents.BackgroundTransparency = 1
  1205. AutoButtonContents.BorderSizePixel = 0
  1206. AutoButtonContents.Size = UDim2.new(1, 0, 0, 40)
  1207. AutoButtonContents.ZIndex = 5
  1208.  
  1209. AutoButtonToggle.Name = "AutoButtonToggle"
  1210. AutoButtonToggle.Parent = AutoButtonContents
  1211. AutoButtonToggle.AnchorPoint = Vector2.new(0, 0.5)
  1212. AutoButtonToggle.BackgroundColor3 = Color3.new(0.741176, 0.741176, 0.741176)
  1213. AutoButtonToggle.BorderSizePixel = 0
  1214. AutoButtonToggle.Position = UDim2.new(0.550000012, 0, 0.5, 0)
  1215. AutoButtonToggle.Size = UDim2.new(0.400000006, 0, 0, 30)
  1216. AutoButtonToggle.ZIndex = 5
  1217. AutoButtonToggle.Font = Enum.Font.ArialBold
  1218. AutoButtonToggle.Text = ""
  1219. AutoButtonToggle.TextScaled = true
  1220. AutoButtonToggle.TextSize = 40
  1221. AutoButtonToggle.TextWrapped = true
  1222.  
  1223. AutoButtonOn.Name = "AutoButtonOn"
  1224. AutoButtonOn.Parent = AutoButtonToggle
  1225. AutoButtonOn.BackgroundColor3 = Color3.new(0, 0.796079, 0)
  1226. AutoButtonOn.BorderSizePixel = 0
  1227. AutoButtonOn.Size = UDim2.new(0.400000006, 0, 1, 0)
  1228. AutoButtonOn.Visible = false
  1229. AutoButtonOn.ZIndex = 5
  1230.  
  1231. Title_3.Name = "Title"
  1232. Title_3.Parent = AutoButtonOn
  1233. Title_3.AnchorPoint = Vector2.new(0, 0.5)
  1234. Title_3.BackgroundColor3 = Color3.new(1, 1, 1)
  1235. Title_3.BackgroundTransparency = 1
  1236. Title_3.Position = UDim2.new(0, 0, 0.5, 0)
  1237. Title_3.Size = UDim2.new(1, 0, 1, 0)
  1238. Title_3.ZIndex = 5
  1239. Title_3.Font = Enum.Font.ArialBold
  1240. Title_3.Text = "ON"
  1241. Title_3.TextScaled = true
  1242. Title_3.TextSize = 14
  1243. Title_3.TextWrapped = true
  1244. Title_3.TextXAlignment = Enum.TextXAlignment.Left
  1245.  
  1246. Fold_5.Name = "Fold"
  1247. Fold_5.Parent = AutoButtonOn
  1248. Fold_5.AnchorPoint = Vector2.new(1, 0)
  1249. Fold_5.BackgroundColor3 = Color3.new(1, 1, 1)
  1250. Fold_5.BackgroundTransparency = 1
  1251. Fold_5.Position = UDim2.new(1, 0, 0, 0)
  1252. Fold_5.Size = UDim2.new(1, 0, 1, 0)
  1253. Fold_5.SizeConstraint = Enum.SizeConstraint.RelativeYY
  1254. Fold_5.ZIndex = 5
  1255. Fold_5.Image = "rbxassetid://1042585012"
  1256. Fold_5.ImageTransparency = 0.5
  1257.  
  1258. AutoButtonOff.Name = "AutoButtonOff"
  1259. AutoButtonOff.Parent = AutoButtonToggle
  1260. AutoButtonOff.AnchorPoint = Vector2.new(1, 0)
  1261. AutoButtonOff.BackgroundColor3 = Color3.new(0.796079, 0, 0.0156863)
  1262. AutoButtonOff.BorderSizePixel = 0
  1263. AutoButtonOff.Position = UDim2.new(1, 0, 0, 0)
  1264. AutoButtonOff.Size = UDim2.new(0.400000006, 0, 1, 0)
  1265. AutoButtonOff.ZIndex = 5
  1266.  
  1267. Title_4.Name = "Title"
  1268. Title_4.Parent = AutoButtonOff
  1269. Title_4.AnchorPoint = Vector2.new(0, 0.5)
  1270. Title_4.BackgroundColor3 = Color3.new(1, 1, 1)
  1271. Title_4.BackgroundTransparency = 1
  1272. Title_4.Position = UDim2.new(0, 0, 0.5, 0)
  1273. Title_4.Size = UDim2.new(1, 0, 1, 0)
  1274. Title_4.ZIndex = 5
  1275. Title_4.Font = Enum.Font.ArialBold
  1276. Title_4.Text = "OFF"
  1277. Title_4.TextScaled = true
  1278. Title_4.TextSize = 14
  1279. Title_4.TextWrapped = true
  1280. Title_4.TextXAlignment = Enum.TextXAlignment.Right
  1281.  
  1282. Fold_6.Name = "Fold"
  1283. Fold_6.Parent = AutoButtonOff
  1284. Fold_6.AnchorPoint = Vector2.new(1, 0)
  1285. Fold_6.BackgroundColor3 = Color3.new(1, 1, 1)
  1286. Fold_6.BackgroundTransparency = 1
  1287. Fold_6.Position = UDim2.new(1, 0, 0, 0)
  1288. Fold_6.Size = UDim2.new(1, 0, 1, 0)
  1289. Fold_6.SizeConstraint = Enum.SizeConstraint.RelativeYY
  1290. Fold_6.ZIndex = 5
  1291. Fold_6.Image = "rbxassetid://1042585012"
  1292. Fold_6.ImageTransparency = 0.5
  1293.  
  1294. Deco_25.Name = "Deco"
  1295. Deco_25.Parent = AutoButtonContents
  1296. Deco_25.AnchorPoint = Vector2.new(0, 0.5)
  1297. Deco_25.BackgroundColor3 = Color3.new(1, 1, 1)
  1298. Deco_25.BackgroundTransparency = 1
  1299. Deco_25.Position = UDim2.new(0, 0, 0.5, 0)
  1300. Deco_25.Size = UDim2.new(0.5, 0, 0.699999988, 0)
  1301. Deco_25.ZIndex = 5
  1302. Deco_25.Font = Enum.Font.ArialBold
  1303. Deco_25.Text = "Auto-Button:"
  1304. Deco_25.TextScaled = true
  1305. Deco_25.TextSize = 14
  1306. Deco_25.TextWrapped = true
  1307. Deco_25.TextXAlignment = Enum.TextXAlignment.Left
  1308.  
  1309. Deco_26.Name = "Deco"
  1310. Deco_26.Parent = AutoButton
  1311. Deco_26.BackgroundColor3 = Color3.new(1, 1, 1)
  1312. Deco_26.BackgroundTransparency = 1
  1313. Deco_26.Position = UDim2.new(0, 0, 1, -20)
  1314. Deco_26.Size = UDim2.new(1, 0, 0, 20)
  1315. Deco_26.ZIndex = 5
  1316. Deco_26.Font = Enum.Font.Arial
  1317. Deco_26.Text = "Automatically presses buttons for you."
  1318. Deco_26.TextColor3 = Color3.new(0, 0, 0)
  1319. Deco_26.TextScaled = true
  1320. Deco_26.TextSize = 14
  1321. Deco_26.TextTransparency = 0.69999998807907
  1322. Deco_26.TextWrapped = true
  1323.  
  1324. AutoLoadout.Name = "AutoLoadout"
  1325. AutoLoadout.Parent = Contents
  1326. AutoLoadout.BackgroundColor3 = Color3.new(1, 1, 1)
  1327. AutoLoadout.BackgroundTransparency = 1
  1328. AutoLoadout.LayoutOrder = 5
  1329. AutoLoadout.Size = UDim2.new(1, -20, 0, 140)
  1330. AutoLoadout.ZIndex = 5
  1331. AutoLoadout.Image = "rbxassetid://875052259"
  1332. AutoLoadout.ImageColor3 = Color3.new(0.376471, 0.309804, 0.639216)
  1333. AutoLoadout.ScaleType = Enum.ScaleType.Slice
  1334. AutoLoadout.SliceCenter = Rect.new(10, 10, 10, 10)
  1335.  
  1336. AutoLoadoutContents.Name = "AutoLoadoutContents"
  1337. AutoLoadoutContents.Parent = AutoLoadout
  1338. AutoLoadoutContents.BackgroundColor3 = Color3.new(1, 1, 1)
  1339. AutoLoadoutContents.BackgroundTransparency = 1
  1340. AutoLoadoutContents.BorderSizePixel = 0
  1341. AutoLoadoutContents.Size = UDim2.new(1, 0, 0, 40)
  1342. AutoLoadoutContents.ZIndex = 5
  1343.  
  1344. AutoLoadout1Toggle.Name = "AutoLoadout1Toggle"
  1345. AutoLoadout1Toggle.Parent = AutoLoadoutContents
  1346. AutoLoadout1Toggle.AnchorPoint = Vector2.new(0, 0.5)
  1347. AutoLoadout1Toggle.BackgroundColor3 = Color3.new(0.741176, 0.741176, 0.741176)
  1348. AutoLoadout1Toggle.BorderSizePixel = 0
  1349. AutoLoadout1Toggle.Position = UDim2.new(0.550000012, 0, 0.5, 0)
  1350. AutoLoadout1Toggle.Size = UDim2.new(0.400000006, 0, 0, 30)
  1351. AutoLoadout1Toggle.ZIndex = 5
  1352. AutoLoadout1Toggle.Font = Enum.Font.ArialBold
  1353. AutoLoadout1Toggle.Text = ""
  1354. AutoLoadout1Toggle.TextScaled = true
  1355. AutoLoadout1Toggle.TextSize = 40
  1356. AutoLoadout1Toggle.TextWrapped = true
  1357.  
  1358. AutoLoadout1On.Name = "AutoLoadout1On"
  1359. AutoLoadout1On.Parent = AutoLoadout1Toggle
  1360. AutoLoadout1On.BackgroundColor3 = Color3.new(0, 0.796079, 0)
  1361. AutoLoadout1On.BorderSizePixel = 0
  1362. AutoLoadout1On.Size = UDim2.new(0.400000006, 0, 1, 0)
  1363. AutoLoadout1On.Visible = false
  1364. AutoLoadout1On.ZIndex = 5
  1365.  
  1366. Deco_27.Name = "Deco"
  1367. Deco_27.Parent = AutoLoadout1On
  1368. Deco_27.AnchorPoint = Vector2.new(0, 0.5)
  1369. Deco_27.BackgroundColor3 = Color3.new(1, 1, 1)
  1370. Deco_27.BackgroundTransparency = 1
  1371. Deco_27.Position = UDim2.new(0, 0, 0.5, 0)
  1372. Deco_27.Size = UDim2.new(1, 0, 1, 0)
  1373. Deco_27.ZIndex = 5
  1374. Deco_27.Font = Enum.Font.ArialBold
  1375. Deco_27.Text = "ON"
  1376. Deco_27.TextScaled = true
  1377. Deco_27.TextSize = 14
  1378. Deco_27.TextWrapped = true
  1379. Deco_27.TextXAlignment = Enum.TextXAlignment.Left
  1380.  
  1381. Deco_28.Name = "Deco"
  1382. Deco_28.Parent = AutoLoadout1On
  1383. Deco_28.AnchorPoint = Vector2.new(1, 0)
  1384. Deco_28.BackgroundColor3 = Color3.new(1, 1, 1)
  1385. Deco_28.BackgroundTransparency = 1
  1386. Deco_28.Position = UDim2.new(1, 0, 0, 0)
  1387. Deco_28.Size = UDim2.new(1, 0, 1, 0)
  1388. Deco_28.SizeConstraint = Enum.SizeConstraint.RelativeYY
  1389. Deco_28.ZIndex = 5
  1390. Deco_28.Image = "rbxassetid://1042585012"
  1391. Deco_28.ImageTransparency = 0.5
  1392.  
  1393. AutoLoadout1Off.Name = "AutoLoadout1Off"
  1394. AutoLoadout1Off.Parent = AutoLoadout1Toggle
  1395. AutoLoadout1Off.AnchorPoint = Vector2.new(1, 0)
  1396. AutoLoadout1Off.BackgroundColor3 = Color3.new(0.796079, 0, 0.0156863)
  1397. AutoLoadout1Off.BorderSizePixel = 0
  1398. AutoLoadout1Off.Position = UDim2.new(1, 0, 0, 0)
  1399. AutoLoadout1Off.Size = UDim2.new(0.400000006, 0, 1, 0)
  1400. AutoLoadout1Off.ZIndex = 5
  1401.  
  1402. Deco_29.Name = "Deco"
  1403. Deco_29.Parent = AutoLoadout1Off
  1404. Deco_29.AnchorPoint = Vector2.new(0, 0.5)
  1405. Deco_29.BackgroundColor3 = Color3.new(1, 1, 1)
  1406. Deco_29.BackgroundTransparency = 1
  1407. Deco_29.Position = UDim2.new(0, 0, 0.5, 0)
  1408. Deco_29.Size = UDim2.new(1, 0, 1, 0)
  1409. Deco_29.ZIndex = 5
  1410. Deco_29.Font = Enum.Font.ArialBold
  1411. Deco_29.Text = "OFF"
  1412. Deco_29.TextScaled = true
  1413. Deco_29.TextSize = 14
  1414. Deco_29.TextWrapped = true
  1415. Deco_29.TextXAlignment = Enum.TextXAlignment.Right
  1416.  
  1417. Deco_30.Name = "Deco"
  1418. Deco_30.Parent = AutoLoadout1Off
  1419. Deco_30.AnchorPoint = Vector2.new(1, 0)
  1420. Deco_30.BackgroundColor3 = Color3.new(1, 1, 1)
  1421. Deco_30.BackgroundTransparency = 1
  1422. Deco_30.Position = UDim2.new(1, 0, 0, 0)
  1423. Deco_30.Size = UDim2.new(1, 0, 1, 0)
  1424. Deco_30.SizeConstraint = Enum.SizeConstraint.RelativeYY
  1425. Deco_30.ZIndex = 5
  1426. Deco_30.Image = "rbxassetid://1042585012"
  1427. Deco_30.ImageTransparency = 0.5
  1428.  
  1429. Deco_31.Name = "Deco"
  1430. Deco_31.Parent = AutoLoadoutContents
  1431. Deco_31.AnchorPoint = Vector2.new(0, 0.5)
  1432. Deco_31.BackgroundColor3 = Color3.new(1, 1, 1)
  1433. Deco_31.BackgroundTransparency = 1
  1434. Deco_31.Position = UDim2.new(0, 0, 0.5, 0)
  1435. Deco_31.Size = UDim2.new(0.5, 0, 0.699999988, 0)
  1436. Deco_31.ZIndex = 5
  1437. Deco_31.Font = Enum.Font.ArialBold
  1438. Deco_31.Text = "Loadout 1:"
  1439. Deco_31.TextScaled = true
  1440. Deco_31.TextSize = 14
  1441. Deco_31.TextWrapped = true
  1442. Deco_31.TextXAlignment = Enum.TextXAlignment.Left
  1443.  
  1444. Deco_32.Name = "Deco"
  1445. Deco_32.Parent = AutoLoadoutContents
  1446. Deco_32.AnchorPoint = Vector2.new(0, 0.5)
  1447. Deco_32.BackgroundColor3 = Color3.new(1, 1, 1)
  1448. Deco_32.BackgroundTransparency = 1
  1449. Deco_32.Position = UDim2.new(0, 0, 1.5, 0)
  1450. Deco_32.Size = UDim2.new(0.5, 0, 0.699999988, 0)
  1451. Deco_32.ZIndex = 5
  1452. Deco_32.Font = Enum.Font.ArialBold
  1453. Deco_32.Text = "Loadout 2:"
  1454. Deco_32.TextScaled = true
  1455. Deco_32.TextSize = 14
  1456. Deco_32.TextWrapped = true
  1457. Deco_32.TextXAlignment = Enum.TextXAlignment.Left
  1458.  
  1459. Deco_33.Name = "Deco"
  1460. Deco_33.Parent = AutoLoadoutContents
  1461. Deco_33.AnchorPoint = Vector2.new(0, 0.5)
  1462. Deco_33.BackgroundColor3 = Color3.new(1, 1, 1)
  1463. Deco_33.BackgroundTransparency = 1
  1464. Deco_33.Position = UDim2.new(0, 0, 2.5, 0)
  1465. Deco_33.Size = UDim2.new(0.5, 0, 0.699999988, 0)
  1466. Deco_33.ZIndex = 5
  1467. Deco_33.Font = Enum.Font.ArialBold
  1468. Deco_33.Text = "Loadout 3:"
  1469. Deco_33.TextScaled = true
  1470. Deco_33.TextSize = 14
  1471. Deco_33.TextWrapped = true
  1472. Deco_33.TextXAlignment = Enum.TextXAlignment.Left
  1473.  
  1474. AutoLoadout2Toggle.Name = "AutoLoadout2Toggle"
  1475. AutoLoadout2Toggle.Parent = AutoLoadoutContents
  1476. AutoLoadout2Toggle.AnchorPoint = Vector2.new(0, 0.5)
  1477. AutoLoadout2Toggle.BackgroundColor3 = Color3.new(0.741176, 0.741176, 0.741176)
  1478. AutoLoadout2Toggle.BorderSizePixel = 0
  1479. AutoLoadout2Toggle.Position = UDim2.new(0.550000012, 0, 1.5, 0)
  1480. AutoLoadout2Toggle.Size = UDim2.new(0.400000006, 0, 0, 30)
  1481. AutoLoadout2Toggle.ZIndex = 5
  1482. AutoLoadout2Toggle.Font = Enum.Font.ArialBold
  1483. AutoLoadout2Toggle.Text = ""
  1484. AutoLoadout2Toggle.TextScaled = true
  1485. AutoLoadout2Toggle.TextSize = 40
  1486. AutoLoadout2Toggle.TextWrapped = true
  1487.  
  1488. AutoLoadout2On.Name = "AutoLoadout2On"
  1489. AutoLoadout2On.Parent = AutoLoadout2Toggle
  1490. AutoLoadout2On.BackgroundColor3 = Color3.new(0, 0.796079, 0)
  1491. AutoLoadout2On.BorderSizePixel = 0
  1492. AutoLoadout2On.Size = UDim2.new(0.400000006, 0, 1, 0)
  1493. AutoLoadout2On.Visible = false
  1494. AutoLoadout2On.ZIndex = 5
  1495.  
  1496. Deco_34.Name = "Deco"
  1497. Deco_34.Parent = AutoLoadout2On
  1498. Deco_34.AnchorPoint = Vector2.new(0, 0.5)
  1499. Deco_34.BackgroundColor3 = Color3.new(1, 1, 1)
  1500. Deco_34.BackgroundTransparency = 1
  1501. Deco_34.Position = UDim2.new(0, 0, 0.5, 0)
  1502. Deco_34.Size = UDim2.new(1, 0, 1, 0)
  1503. Deco_34.ZIndex = 5
  1504. Deco_34.Font = Enum.Font.ArialBold
  1505. Deco_34.Text = "ON"
  1506. Deco_34.TextScaled = true
  1507. Deco_34.TextSize = 14
  1508. Deco_34.TextWrapped = true
  1509. Deco_34.TextXAlignment = Enum.TextXAlignment.Left
  1510.  
  1511. Deco_35.Name = "Deco"
  1512. Deco_35.Parent = AutoLoadout2On
  1513. Deco_35.AnchorPoint = Vector2.new(1, 0)
  1514. Deco_35.BackgroundColor3 = Color3.new(1, 1, 1)
  1515. Deco_35.BackgroundTransparency = 1
  1516. Deco_35.Position = UDim2.new(1, 0, 0, 0)
  1517. Deco_35.Size = UDim2.new(1, 0, 1, 0)
  1518. Deco_35.SizeConstraint = Enum.SizeConstraint.RelativeYY
  1519. Deco_35.ZIndex = 5
  1520. Deco_35.Image = "rbxassetid://1042585012"
  1521. Deco_35.ImageTransparency = 0.5
  1522.  
  1523. AutoLoadout2Off.Name = "AutoLoadout2Off"
  1524. AutoLoadout2Off.Parent = AutoLoadout2Toggle
  1525. AutoLoadout2Off.AnchorPoint = Vector2.new(1, 0)
  1526. AutoLoadout2Off.BackgroundColor3 = Color3.new(0.796079, 0, 0.0156863)
  1527. AutoLoadout2Off.BorderSizePixel = 0
  1528. AutoLoadout2Off.Position = UDim2.new(1, 0, 0, 0)
  1529. AutoLoadout2Off.Size = UDim2.new(0.400000006, 0, 1, 0)
  1530. AutoLoadout2Off.ZIndex = 5
  1531.  
  1532. Deco_36.Name = "Deco"
  1533. Deco_36.Parent = AutoLoadout2Off
  1534. Deco_36.AnchorPoint = Vector2.new(0, 0.5)
  1535. Deco_36.BackgroundColor3 = Color3.new(1, 1, 1)
  1536. Deco_36.BackgroundTransparency = 1
  1537. Deco_36.Position = UDim2.new(0, 0, 0.5, 0)
  1538. Deco_36.Size = UDim2.new(1, 0, 1, 0)
  1539. Deco_36.ZIndex = 5
  1540. Deco_36.Font = Enum.Font.ArialBold
  1541. Deco_36.Text = "OFF"
  1542. Deco_36.TextScaled = true
  1543. Deco_36.TextSize = 14
  1544. Deco_36.TextWrapped = true
  1545. Deco_36.TextXAlignment = Enum.TextXAlignment.Right
  1546.  
  1547. Deco_37.Name = "Deco"
  1548. Deco_37.Parent = AutoLoadout2Off
  1549. Deco_37.AnchorPoint = Vector2.new(1, 0)
  1550. Deco_37.BackgroundColor3 = Color3.new(1, 1, 1)
  1551. Deco_37.BackgroundTransparency = 1
  1552. Deco_37.Position = UDim2.new(1, 0, 0, 0)
  1553. Deco_37.Size = UDim2.new(1, 0, 1, 0)
  1554. Deco_37.SizeConstraint = Enum.SizeConstraint.RelativeYY
  1555. Deco_37.ZIndex = 5
  1556. Deco_37.Image = "rbxassetid://1042585012"
  1557. Deco_37.ImageTransparency = 0.5
  1558.  
  1559. AutoLoadout3Toggle.Name = "AutoLoadout3Toggle"
  1560. AutoLoadout3Toggle.Parent = AutoLoadoutContents
  1561. AutoLoadout3Toggle.AnchorPoint = Vector2.new(0, 0.5)
  1562. AutoLoadout3Toggle.BackgroundColor3 = Color3.new(0.741176, 0.741176, 0.741176)
  1563. AutoLoadout3Toggle.BorderSizePixel = 0
  1564. AutoLoadout3Toggle.Position = UDim2.new(0.550000012, 0, 2.5, 0)
  1565. AutoLoadout3Toggle.Size = UDim2.new(0.400000006, 0, 0, 30)
  1566. AutoLoadout3Toggle.ZIndex = 5
  1567. AutoLoadout3Toggle.Font = Enum.Font.ArialBold
  1568. AutoLoadout3Toggle.Text = ""
  1569. AutoLoadout3Toggle.TextScaled = true
  1570. AutoLoadout3Toggle.TextSize = 40
  1571. AutoLoadout3Toggle.TextWrapped = true
  1572.  
  1573. AutoLoadout3On.Name = "AutoLoadout3On"
  1574. AutoLoadout3On.Parent = AutoLoadout3Toggle
  1575. AutoLoadout3On.BackgroundColor3 = Color3.new(0, 0.796079, 0)
  1576. AutoLoadout3On.BorderSizePixel = 0
  1577. AutoLoadout3On.Size = UDim2.new(0.400000006, 0, 1, 0)
  1578. AutoLoadout3On.Visible = false
  1579. AutoLoadout3On.ZIndex = 5
  1580.  
  1581. Deco_38.Name = "Deco"
  1582. Deco_38.Parent = AutoLoadout3On
  1583. Deco_38.AnchorPoint = Vector2.new(0, 0.5)
  1584. Deco_38.BackgroundColor3 = Color3.new(1, 1, 1)
  1585. Deco_38.BackgroundTransparency = 1
  1586. Deco_38.Position = UDim2.new(0, 0, 0.5, 0)
  1587. Deco_38.Size = UDim2.new(1, 0, 1, 0)
  1588. Deco_38.ZIndex = 5
  1589. Deco_38.Font = Enum.Font.ArialBold
  1590. Deco_38.Text = "ON"
  1591. Deco_38.TextScaled = true
  1592. Deco_38.TextSize = 14
  1593. Deco_38.TextWrapped = true
  1594. Deco_38.TextXAlignment = Enum.TextXAlignment.Left
  1595.  
  1596. Deco_39.Name = "Deco"
  1597. Deco_39.Parent = AutoLoadout3On
  1598. Deco_39.AnchorPoint = Vector2.new(1, 0)
  1599. Deco_39.BackgroundColor3 = Color3.new(1, 1, 1)
  1600. Deco_39.BackgroundTransparency = 1
  1601. Deco_39.Position = UDim2.new(1, 0, 0, 0)
  1602. Deco_39.Size = UDim2.new(1, 0, 1, 0)
  1603. Deco_39.SizeConstraint = Enum.SizeConstraint.RelativeYY
  1604. Deco_39.ZIndex = 5
  1605. Deco_39.Image = "rbxassetid://1042585012"
  1606. Deco_39.ImageTransparency = 0.5
  1607.  
  1608. AutoLoadout3Off.Name = "AutoLoadout3Off"
  1609. AutoLoadout3Off.Parent = AutoLoadout3Toggle
  1610. AutoLoadout3Off.AnchorPoint = Vector2.new(1, 0)
  1611. AutoLoadout3Off.BackgroundColor3 = Color3.new(0.796079, 0, 0.0156863)
  1612. AutoLoadout3Off.BorderSizePixel = 0
  1613. AutoLoadout3Off.Position = UDim2.new(1, 0, 0, 0)
  1614. AutoLoadout3Off.Size = UDim2.new(0.400000006, 0, 1, 0)
  1615. AutoLoadout3Off.ZIndex = 5
  1616.  
  1617. Deco_40.Name = "Deco"
  1618. Deco_40.Parent = AutoLoadout3Off
  1619. Deco_40.AnchorPoint = Vector2.new(0, 0.5)
  1620. Deco_40.BackgroundColor3 = Color3.new(1, 1, 1)
  1621. Deco_40.BackgroundTransparency = 1
  1622. Deco_40.Position = UDim2.new(0, 0, 0.5, 0)
  1623. Deco_40.Size = UDim2.new(1, 0, 1, 0)
  1624. Deco_40.ZIndex = 5
  1625. Deco_40.Font = Enum.Font.ArialBold
  1626. Deco_40.Text = "OFF"
  1627. Deco_40.TextScaled = true
  1628. Deco_40.TextSize = 14
  1629. Deco_40.TextWrapped = true
  1630. Deco_40.TextXAlignment = Enum.TextXAlignment.Right
  1631.  
  1632. Deco_41.Name = "Deco"
  1633. Deco_41.Parent = AutoLoadout3Off
  1634. Deco_41.AnchorPoint = Vector2.new(1, 0)
  1635. Deco_41.BackgroundColor3 = Color3.new(1, 1, 1)
  1636. Deco_41.BackgroundTransparency = 1
  1637. Deco_41.Position = UDim2.new(1, 0, 0, 0)
  1638. Deco_41.Size = UDim2.new(1, 0, 1, 0)
  1639. Deco_41.SizeConstraint = Enum.SizeConstraint.RelativeYY
  1640. Deco_41.ZIndex = 5
  1641. Deco_41.Image = "rbxassetid://1042585012"
  1642. Deco_41.ImageTransparency = 0.5
  1643.  
  1644. Deco_42.Name = "Deco"
  1645. Deco_42.Parent = AutoLoadout
  1646. Deco_42.BackgroundColor3 = Color3.new(1, 1, 1)
  1647. Deco_42.BackgroundTransparency = 1
  1648. Deco_42.Position = UDim2.new(0, 0, 1, -20)
  1649. Deco_42.Size = UDim2.new(1, 0, 0, 20)
  1650. Deco_42.ZIndex = 5
  1651. Deco_42.Font = Enum.Font.Arial
  1652. Deco_42.Text = "Automatically loads a pre-saved loadout."
  1653. Deco_42.TextColor3 = Color3.new(0, 0, 0)
  1654. Deco_42.TextScaled = true
  1655. Deco_42.TextSize = 14
  1656. Deco_42.TextTransparency = 0.69999998807907
  1657. Deco_42.TextWrapped = true
  1658.  
  1659. OreBooster.Name = "OreBooster"
  1660. OreBooster.Parent = Contents
  1661. OreBooster.BackgroundColor3 = Color3.new(1, 1, 1)
  1662. OreBooster.BackgroundTransparency = 1
  1663. OreBooster.AnchorPoint = Vector2.new(0, 0.5)
  1664. OreBooster.LayoutOrder = 7
  1665. OreBooster.Size = UDim2.new(1, -20, 0, 60)
  1666. OreBooster.ZIndex = 5
  1667. OreBooster.Image = "rbxassetid://875052259"
  1668. OreBooster.ImageColor3 = Color3.new(0.0313726, 0.427451, 0.596078)
  1669. OreBooster.ScaleType = Enum.ScaleType.Slice
  1670. OreBooster.SliceCenter = Rect.new(10, 10, 10, 10)
  1671.  
  1672. OreBoosterContents.Name = "OreBoosterContents"
  1673. OreBoosterContents.Parent = OreBooster
  1674. OreBoosterContents.BackgroundColor3 = Color3.new(1, 1, 1)
  1675. OreBoosterContents.BackgroundTransparency = 1
  1676. OreBoosterContents.BorderSizePixel = 0
  1677. OreBoosterContents.Size = UDim2.new(1, 0, 0, 40)
  1678. OreBoosterContents.ZIndex = 5
  1679.  
  1680. OreBoosterButton.Name = "OreBoosterButton"
  1681. OreBoosterButton.Parent = OreBoosterContents
  1682. OreBoosterButton.AnchorPoint = Vector2.new(0, 0.5)
  1683. OreBoosterButton.BackgroundColor3 = Color3.new(0, 0.827451, 0.839216)
  1684. OreBoosterButton.BorderSizePixel = 0
  1685. OreBoosterButton.Position = UDim2.new(0.0500000007, 0, 0.5, 0)
  1686. OreBoosterButton.Size = UDim2.new(0.800000012, 0, 0, 30)
  1687. OreBoosterButton.ZIndex = 5
  1688. OreBoosterButton.Font = Enum.Font.ArialBold
  1689. OreBoosterButton.FontSize = Enum.FontSize.Size48
  1690. OreBoosterButton.Text = "Ore Booster"
  1691. OreBoosterButton.TextScaled = true
  1692. OreBoosterButton.TextSize = 40
  1693. OreBoosterButton.TextWrapped = true
  1694.  
  1695. Deco_43.Name = "Deco"
  1696. Deco_43.Parent = OreBoosterButton
  1697. Deco_43.AnchorPoint = Vector2.new(1, 0)
  1698. Deco_43.BackgroundColor3 = Color3.new(1, 1, 1)
  1699. Deco_43.BackgroundTransparency = 1
  1700. Deco_43.Position = UDim2.new(1, 0, 0, 0)
  1701. Deco_43.Size = UDim2.new(1, 0, 1, 0)
  1702. Deco_43.SizeConstraint = Enum.SizeConstraint.RelativeYY
  1703. Deco_43.ZIndex = 5
  1704. Deco_43.Image = "rbxassetid://1042585012"
  1705. Deco_43.ImageTransparency = 0.30000001192093
  1706.  
  1707. Deco_44.Name = "Deco"
  1708. Deco_44.Parent = OreBooster
  1709. Deco_44.BackgroundColor3 = Color3.new(1, 1, 1)
  1710. Deco_44.BackgroundTransparency = 1
  1711. Deco_44.Position = UDim2.new(0, 0, 1, -20)
  1712. Deco_44.Size = UDim2.new(1, 0, 0, 20)
  1713. Deco_44.ZIndex = 5
  1714. Deco_44.Font = Enum.Font.Arial
  1715. Deco_44.FontSize = Enum.FontSize.Size14
  1716. Deco_44.Text = "Requires one furnace on your base. Ores will be upgraded."
  1717. Deco_44.TextColor3 = Color3.new(0, 0, 0)
  1718. Deco_44.TextScaled = true
  1719. Deco_44.TextSize = 14
  1720. Deco_44.TextTransparency = 0.69999998807907
  1721. Deco_44.TextWrapped = true
  1722.  
  1723. Top.Name = "Top"
  1724. Top.Parent = Rocket
  1725. Top.BackgroundColor3 = Color3.new(1, 1, 1)
  1726. Top.BackgroundTransparency = 1
  1727. Top.Position = UDim2.new(0, 0, 0, -32)
  1728. Top.Size = UDim2.new(0.349999994, 0, 0, 32)
  1729. Top.ZIndex = 7
  1730. Top.Image = "rbxassetid://875052259"
  1731. Top.ImageColor3 = Color3.new(0.121569, 0.121569, 0.121569)
  1732. Top.ScaleType = Enum.ScaleType.Slice
  1733. Top.SliceCenter = Rect.new(10, 10, 10, 10)
  1734.  
  1735. Title_5.Name = "Title"
  1736. Title_5.Parent = Top
  1737. Title_5.BackgroundColor3 = Color3.new(1, 1, 1)
  1738. Title_5.BackgroundTransparency = 1
  1739. Title_5.Size = UDim2.new(1, 0, 1, 0)
  1740. Title_5.ZIndex = 8
  1741. Title_5.Font = Enum.Font.SourceSansBold
  1742. Title_5.Text = "Rocket"
  1743. Title_5.TextColor3 = Color3.new(1, 1, 1)
  1744. Title_5.TextScaled = true
  1745. Title_5.TextSize = 14
  1746. Title_5.TextWrapped = true
  1747.  
  1748. Close.Name = "Close"
  1749. Close.Parent = Top
  1750. Close.BackgroundColor3 = Color3.new(1, 0.294118, 0.305882)
  1751. Close.BorderSizePixel = 0
  1752. Close.Position = UDim2.new(1, 0, 0, 0)
  1753. Close.Size = UDim2.new(0, 40, 1, 0)
  1754. Close.ZIndex = 4
  1755. Close.Modal = true
  1756. Close.Selected = true
  1757. Close.Font = Enum.Font.ArialBold
  1758. Close.Text = "X"
  1759. Close.TextScaled = true
  1760. Close.TextSize = 14
  1761. Close.TextWrapped = true
  1762.  
  1763. Depth.Name = "Depth"
  1764. Depth.Parent = Top
  1765. Depth.BackgroundColor3 = Color3.new(1, 1, 1)
  1766. Depth.BackgroundTransparency = 1
  1767. Depth.Position = UDim2.new(0, 0, 0, 6)
  1768. Depth.Size = UDim2.new(1, 0, 1, 0)
  1769. Depth.ZIndex = 4
  1770. Depth.Image = "rbxassetid://875052259"
  1771. Depth.ImageColor3 = Color3.new(0.356863, 0.356863, 0.356863)
  1772. Depth.ScaleType = Enum.ScaleType.Slice
  1773. Depth.SliceCenter = Rect.new(10, 10, 10, 10)
  1774.  
  1775. Depth_2.Name = "Depth"
  1776. Depth_2.Parent = Rocket
  1777. Depth_2.BackgroundColor3 = Color3.new(1, 1, 1)
  1778. Depth_2.BackgroundTransparency = 1
  1779. Depth_2.Position = UDim2.new(0, 0, 0, 6)
  1780. Depth_2.Size = UDim2.new(1, 0, 1, 0)
  1781. Depth_2.ZIndex = 2
  1782. Depth_2.Image = "rbxassetid://875052259"
  1783. Depth_2.ImageColor3 = Color3.new(0.356863, 0.356863, 0.356863)
  1784. Depth_2.ScaleType = Enum.ScaleType.Slice
  1785. Depth_2.SliceCenter = Rect.new(10, 10, 10, 10)
  1786.  
  1787. UISizeConstraint.Parent = Rocket
  1788. UISizeConstraint.MaxSize = Vector2.new(500, 450)
  1789.  
  1790.  
  1791. AddCloverButton.MouseButton1Down:connect(function()
  1792. game.Players.LocalPlayer.Clovers.Value = game.Players.LocalPlayer.Clovers.Value+1
  1793. end)
  1794.  
  1795. AddTwitchCoinButton.MouseButton1Down:connect(function()
  1796. game.Players.LocalPlayer.TwitchPoints.Value = game.Players.LocalPlayer.TwitchPoints.Value+1
  1797. end)
  1798.  
  1799. OreBoosterButton.MouseButton1Down:connect(function()
  1800. local factory = nil
  1801. local lava = nil
  1802. local a = workspace.Tycoons:getDescendants()
  1803. for i=1,#a do
  1804. if a[i].Name == "Owner" then
  1805. if a[i].Value == game.Players.LocalPlayer.Name then
  1806. factory = a[i].Parent
  1807. end
  1808. end
  1809. end
  1810.  
  1811. local furnace = factory:getDescendants()
  1812. for i=1,#furnace do
  1813. if furnace[i].Name == "Lava" then
  1814. lava = furnace[i]
  1815. end
  1816. end
  1817.  
  1818. local upgrade = workspace.Tycoons:getDescendants()
  1819. for i=1,#upgrade do
  1820. if upgrade[i].Name == "Upgrade" then
  1821. local deco = upgrade[i]:getChildren()
  1822. for i=1,#deco do
  1823. if deco[i].Name == "TouchInterest" then
  1824. else
  1825. deco[i]:remove()
  1826. end
  1827. end
  1828. upgrade[i].Size = lava.Size
  1829. upgrade[i].Transparency = 1
  1830. upgrade[i].Position = lava.Position
  1831. end
  1832. end
  1833. end)
  1834.  
  1835. local autorebirth = false
  1836. AutoRebirthToggle.MouseButton1Down:connect(function()
  1837. if AutoRebirthOn.Visible == false then
  1838. AutoRebirthOn.Visible = true
  1839. AutoRebirthOff.Visible = false
  1840. autorebirth = true
  1841. else
  1842. AutoRebirthOn.Visible = false
  1843. AutoRebirthOff.Visible = true
  1844. autorebirth = false
  1845. end
  1846. end)
  1847.  
  1848. spawn(function()
  1849. while true do
  1850. wait(1)
  1851. if autorebirth == true then
  1852. game.ReplicatedStorage.Rebirth:InvokeServer()
  1853. end
  1854. end
  1855. end)
  1856.  
  1857.  
  1858. local autoremote = false
  1859. AutoRemoteToggle.MouseButton1Down:connect(function()
  1860. if autoremote == false then
  1861. AutoRemoteOn.Visible = true
  1862. AutoRemoteOff.Visible = false
  1863. autoremote = true
  1864. else
  1865. AutoRemoteOn.Visible = false
  1866. AutoRemoteOff.Visible = true
  1867. autoremote = false
  1868. end
  1869. end)
  1870.  
  1871. spawn(function()
  1872. while true do
  1873. wait()
  1874. if autoremote == true then
  1875. game.ReplicatedStorage.RemoteDrop:FireServer()
  1876. end
  1877. end
  1878. end)
  1879.  
  1880.  
  1881.  
  1882. NotificationsToggle.MouseButton1Down:connect(function()
  1883. if NotificationsOn.Visible == false then
  1884. NotificationsOn.Visible = true
  1885. NotificationsOff.Visible = false
  1886. game.Players.LocalPlayer.PlayerGui.GUI.Menu.Menu.Sounds.Message.Volume = 0.5
  1887. game.Players.LocalPlayer.PlayerGui.GUI.Notifications.Visible = true
  1888. else
  1889. NotificationsOn.Visible = false
  1890. NotificationsOff.Visible = true
  1891. game.Players.LocalPlayer.PlayerGui.GUI.Menu.Menu.Sounds.Message.Volume = 0
  1892. game.Players.LocalPlayer.PlayerGui.GUI.Notifications.Visible = false
  1893. end
  1894. end)
  1895.  
  1896.  
  1897.  
  1898.  
  1899. local autobutton = false
  1900. AutoButtonToggle.MouseButton1Down:connect(function()
  1901. if autobutton == false then
  1902. AutoButtonOn.Visible = true
  1903. AutoButtonOff.Visible = false
  1904. autobutton = true
  1905. else
  1906. AutoButtonOn.Visible = false
  1907. AutoButtonOff.Visible = true
  1908. autobutton = false
  1909. end
  1910. end)
  1911.  
  1912.  
  1913.  
  1914.  
  1915. spawn (function()
  1916. while true do
  1917. wait(0.1)
  1918. if autobutton == true then
  1919. local clickymines = workspace.Tycoons[tostring(game.Players.LocalPlayer.PlayerTycoon.Value)]:GetChildren()
  1920. for i =1, #clickymines do
  1921. if clickymines[i].ClassName == "Model" then
  1922. if clickymines[i].Model:findFirstChild("Button") then
  1923. local de = clickymines[i].Model:GetChildren()
  1924. for i =1, #de do
  1925. if de[i].Name == "Button" then
  1926. game.ReplicatedStorage.Click:FireServer(de[i])
  1927. end
  1928. end
  1929. end
  1930. end
  1931. end
  1932. end
  1933. end
  1934. end)
  1935.  
  1936.  
  1937.  
  1938.  
  1939. local autoloadout1 = false
  1940. AutoLoadout1Toggle.MouseButton1Down:connect(function()
  1941. if autoloadout1 == false then
  1942. AutoLoadout1On.Visible = true
  1943. AutoLoadout1Off.Visible = false
  1944. autoloadout1 = true
  1945. else
  1946. AutoLoadout1On.Visible = false
  1947. AutoLoadout1Off.Visible = true
  1948. autoloadout1 = false
  1949. end
  1950. end)
  1951.  
  1952. spawn(function()
  1953. while true do
  1954. wait()
  1955. if autoloadout1 == true then
  1956. game.ReplicatedStorage.Layouts:InvokeServer("Load","Layout1")
  1957. else
  1958. end
  1959. end
  1960. end)
  1961.  
  1962.  
  1963.  
  1964. local autoloadout2 = false
  1965. AutoLoadout2Toggle.MouseButton1Down:connect(function()
  1966. if autoloadout2 == false then
  1967. AutoLoadout2On.Visible = true
  1968. AutoLoadout2Off.Visible = false
  1969. autoloadout2 = true
  1970. else
  1971. AutoLoadout2On.Visible = false
  1972. AutoLoadout2Off.Visible = true
  1973. autoloadout2 = false
  1974. end
  1975. end)
  1976.  
  1977. spawn(function()
  1978. while true do
  1979. wait()
  1980. if autoloadout2 == true then
  1981. game.ReplicatedStorage.Layouts:InvokeServer("Load","Layout2")
  1982. else
  1983. end
  1984. end
  1985. end)
  1986.  
  1987.  
  1988.  
  1989. local autoloadout3 = false
  1990. AutoLoadout3Toggle.MouseButton1Down:connect(function()
  1991. if autoloadout3 == false then
  1992. AutoLoadout3On.Visible = true
  1993. AutoLoadout3Off.Visible = false
  1994. autoloadout3 = true
  1995. else
  1996. AutoLoadout3On.Visible = false
  1997. AutoLoadout3Off.Visible = true
  1998. autoloadout3 = false
  1999. end
  2000. end)
  2001.  
  2002. spawn(function()
  2003. while true do
  2004. wait()
  2005. if autoloadout3 == true then
  2006. game.ReplicatedStorage.Layouts:InvokeServer("Load","Layout3")
  2007. else
  2008. end
  2009. end
  2010. end)
  2011.  
  2012. function steal(plr)
  2013. local buy = "buy"
  2014. local pos = "pos"
  2015. local savestring = "savestring"
  2016. local basename = "basename"
  2017.  
  2018. local tosteal = workspace.Tycoons:GetChildren()
  2019. for i=1,#tosteal do
  2020. if tosteal[i].Owner.Value == plr then
  2021. basename = tosteal[i].Name
  2022. end
  2023. end
  2024.  
  2025. savestring = "local plrbase = game.Players.LocalPlayer.PlayerTycoon.Value\n"
  2026. for i,v in pairs(workspace.Tycoons:findFirstChild(basename):GetChildren()) do
  2027. if v:IsA("Model") then
  2028. local posmaths = tostring(v.Hitbox.CFrame - workspace.Tycoons:findFirstChild(basename).Base.Position)
  2029. pos = tostring('local pos = CFrame.new(' .. posmaths .. ') + plrbase:FindFirstChild("Base").Position' .. '\n')
  2030. buy = tostring('game.ReplicatedStorage.BuyItem:InvokeServer("' .. v.Name .. '", 1)\n')
  2031. savestring = savestring .. pos .. buy .. tostring('game.ReplicatedStorage.PlaceItem:InvokeServer("' .. v.Name ..'", ' .. " pos)" .. '\n\n')
  2032. end
  2033. end
  2034. loadstring(savestring)()
  2035. end
  2036.  
  2037.  
  2038. local players = game.Players:getChildren()
  2039. for i=1,#players do
  2040. local PlayerButton = Instance.new("TextButton")
  2041. PlayerButton.Name = "PlayerButton"
  2042. PlayerButton.Parent = BaseStealerButtons
  2043. PlayerButton.AnchorPoint = Vector2.new(0, 0.5)
  2044. PlayerButton.BackgroundColor3 = players[i].TeamColor.Color
  2045. PlayerButton.BorderSizePixel = 0
  2046. PlayerButton.Position = UDim2.new(0.45, 0, 0.5, 0)
  2047. PlayerButton.Size = UDim2.new(0.8, 0, 0, 30)
  2048. PlayerButton.ZIndex = 5
  2049. PlayerButton.Font = Enum.Font.ArialBold
  2050. PlayerButton.TextScaled = true
  2051. PlayerButton.TextSize = 40
  2052. PlayerButton.TextWrapped = true
  2053. local Deco = Instance.new("ImageLabel")
  2054. Deco.Name = "Fold"
  2055. Deco.Parent = PlayerButton
  2056. Deco.AnchorPoint = Vector2.new(1, 0)
  2057. Deco.BackgroundColor3 = Color3.new(1, 1, 1)
  2058. Deco.BackgroundTransparency = 1
  2059. Deco.Position = UDim2.new(1, 0, 0, 0)
  2060. Deco.Size = UDim2.new(1, 0, 1, 0)
  2061. Deco.SizeConstraint = Enum.SizeConstraint.RelativeYY
  2062. Deco.ZIndex = 5
  2063. Deco.Image = "rbxassetid://1042585012"
  2064. Deco.ImageTransparency = 0.3
  2065. PlayerButton.Text = players[i].Name
  2066. PlayerButton.MouseButton1Down:connect(function()
  2067. game.ReplicatedStorage['DestroyAll']:InvokeServer()
  2068. steal(PlayerButton.Text)
  2069. end)
  2070. end
  2071.  
  2072. game.Players.PlayerAdded:Connect(function(player)
  2073. BaseStealerButtons:ClearAllChildren()
  2074. local players = game.Players:getChildren()
  2075. for i=1,#players do
  2076. local PlayerButton = Instance.new("TextButton")
  2077. PlayerButton.Name = "PlayerButton"
  2078. PlayerButton.Parent = BaseStealerButtons
  2079. PlayerButton.AnchorPoint = Vector2.new(0, 0.5)
  2080. PlayerButton.BackgroundColor3 = players[i].TeamColor.Color
  2081. PlayerButton.BorderSizePixel = 0
  2082. PlayerButton.Position = UDim2.new(0.45, 0, 0.5, 0)
  2083. PlayerButton.Size = UDim2.new(0.8, 0, 0, 30)
  2084. PlayerButton.ZIndex = 5
  2085. PlayerButton.Font = Enum.Font.ArialBold
  2086. PlayerButton.TextScaled = true
  2087. PlayerButton.TextSize = 40
  2088. PlayerButton.TextWrapped = true
  2089. local Deco = Instance.new("ImageLabel")
  2090. Deco.Name = "Fold"
  2091. Deco.Parent = PlayerButton
  2092. Deco.AnchorPoint = Vector2.new(1, 0)
  2093. Deco.BackgroundColor3 = Color3.new(1, 1, 1)
  2094. Deco.BackgroundTransparency = 1
  2095. Deco.Position = UDim2.new(1, 0, 0, 0)
  2096. Deco.Size = UDim2.new(1, 0, 1, 0)
  2097. Deco.SizeConstraint = Enum.SizeConstraint.RelativeYY
  2098. Deco.ZIndex = 5
  2099. Deco.Image = "rbxassetid://1042585012"
  2100. Deco.ImageTransparency = 0.3
  2101. PlayerButton.Text = players[i].Name
  2102. PlayerButton.MouseButton1Down:connect(function()
  2103. game.ReplicatedStorage['DestroyAll']:InvokeServer()
  2104. steal(PlayerButton.Text)
  2105. end)
  2106. end
  2107. local UIListLayout_3 = Instance.new("UIListLayout")
  2108. UIListLayout_3.Parent = BaseStealerButtons
  2109. UIListLayout_3.HorizontalAlignment = Enum.HorizontalAlignment.Center
  2110. end)
  2111.  
  2112. game.Players.PlayerRemoving:Connect(function(player)
  2113. BaseStealerButtons:ClearAllChildren()
  2114. local players = game.Players:getChildren()
  2115. for i=1,#players do
  2116. local PlayerButton = Instance.new("TextButton")
  2117. PlayerButton.Name = "PlayerButton"
  2118. PlayerButton.Parent = BaseStealerButtons
  2119. PlayerButton.AnchorPoint = Vector2.new(0, 0.5)
  2120. PlayerButton.BackgroundColor3 = players[i].TeamColor.Color
  2121. PlayerButton.BorderSizePixel = 0
  2122. PlayerButton.Position = UDim2.new(0.45, 0, 0.5, 0)
  2123. PlayerButton.Size = UDim2.new(0.8, 0, 0, 30)
  2124. PlayerButton.ZIndex = 5
  2125. PlayerButton.Font = Enum.Font.ArialBold
  2126. PlayerButton.TextScaled = true
  2127. PlayerButton.TextSize = 40
  2128. PlayerButton.TextWrapped = true
  2129. local Deco = Instance.new("ImageLabel")
  2130. Deco.Name = "Fold"
  2131. Deco.Parent = PlayerButton
  2132. Deco.AnchorPoint = Vector2.new(1, 0)
  2133. Deco.BackgroundColor3 = Color3.new(1, 1, 1)
  2134. Deco.BackgroundTransparency = 1
  2135. Deco.Position = UDim2.new(1, 0, 0, 0)
  2136. Deco.Size = UDim2.new(1, 0, 1, 0)
  2137. Deco.SizeConstraint = Enum.SizeConstraint.RelativeYY
  2138. Deco.ZIndex = 5
  2139. Deco.Image = "rbxassetid://1042585012"
  2140. Deco.ImageTransparency = 0.3
  2141. PlayerButton.Text = players[i].Name
  2142. PlayerButton.MouseButton1Down:connect(function()
  2143. game.ReplicatedStorage['DestroyAll']:InvokeServer()
  2144. steal(PlayerButton.Text)
  2145. end)
  2146. end
  2147. local UIListLayout_3 = Instance.new("UIListLayout")
  2148. UIListLayout_3.Parent = BaseStealerButtons
  2149. UIListLayout_3.HorizontalAlignment = Enum.HorizontalAlignment.Center
  2150. end)
  2151.  
  2152.  
  2153.  
  2154. Close.MouseButton1Down:connect(function()
  2155. game.Players.LocalPlayer.PlayerGui.GUI.Menu.Menu.Sounds.Click:Play()
  2156. Rocket.Visible = false
  2157. if game.Lighting.Blur.Size == 9 then
  2158. for i=1,18 do
  2159. game.Lighting.Blur.Size = game.Lighting.Blur.Size-0.5
  2160. wait()
  2161. end
  2162. end
  2163. end)
  2164. end
  2165. end)
  2166.  
  2167. spawn(function()
  2168. local function onCharacterAdded(character)
  2169. loadstring(game:HttpGet(('https://pastebin.com/raw/q1H44svQ'),true))()
  2170. end
  2171.  
  2172. game.Players.LocalPlayer.CharacterAdded:Connect(onCharacterAdded)
  2173. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement