Advertisement
Gerard_games

army control sim gui

Dec 24th, 2018
4,246
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 25.15 KB | None | 0 0
  1. -- Instances:
  2. local ArmySimGUI = Instance.new("ScreenGui")
  3. local Main = Instance.new("Frame")
  4. local BiomeTP = Instance.new("TextButton")
  5. local ShopTP = Instance.new("TextButton")
  6. local Farming = Instance.new("TextButton")
  7. local Otheruseful = Instance.new("TextButton")
  8. local BiomeTPFrame = Instance.new("Frame")
  9. local Spawnleaderboards = Instance.new("TextButton")
  10. local Forest = Instance.new("TextButton")
  11. local Desert = Instance.new("TextButton")
  12. local EnchantedForest = Instance.new("TextButton")
  13. local Tundra = Instance.new("TextButton")
  14. local Depths = Instance.new("TextButton")
  15. local OtherusefulFrame = Instance.new("Frame")
  16. local ClaimBase = Instance.new("TextButton")
  17. local AutoWandON = Instance.new("TextButton")
  18. local AutoWandOFF = Instance.new("TextButton")
  19. local FarmingFrame = Instance.new("Frame")
  20. local BeginnerON = Instance.new("TextButton")
  21. local BeginnerOFF = Instance.new("TextButton")
  22. local MehON = Instance.new("TextButton")
  23. local MehOFF = Instance.new("TextButton")
  24. local ReallyGoodOFF = Instance.new("TextButton")
  25. local ReallyGoodON = Instance.new("TextButton")
  26. local GoodOFF = Instance.new("TextButton")
  27. local GoodON = Instance.new("TextButton")
  28. local BestOFF = Instance.new("TextButton")
  29. local BestON = Instance.new("TextButton")
  30. local EvenBetterOFF = Instance.new("TextButton")
  31. local EvenBetterON = Instance.new("TextButton")
  32. local ShopTPFrame = Instance.new("Frame")
  33. local ArmyShop = Instance.new("TextButton")
  34. local ArmorShop = Instance.new("TextButton")
  35. local DepthsShop = Instance.new("TextButton")
  36. local BagShop = Instance.new("TextButton")
  37. local EnchantedShop = Instance.new("TextButton")
  38. local DesertBowShop = Instance.new("TextButton")
  39. local SpellShop = Instance.new("TextButton")
  40. local SwordShop = Instance.new("TextButton")
  41. local TundraShop = Instance.new("TextButton")
  42. local Idonothing = Instance.new("TextButton")
  43.  
  44. --Properties:
  45. ArmySimGUI.Name = "Army Sim GUI"
  46. ArmySimGUI.Parent = game.CoreGui
  47.  
  48. Main.Name = "Main"
  49. Main.Parent = ArmySimGUI
  50. Main.BackgroundColor3 = Color3.new(0.392157, 0.392157, 0.392157)
  51. Main.BorderColor3 = Color3.new(0, 0, 0)
  52. Main.Position = UDim2.new(0.0194401182, 0, 0.600737154, 0)
  53. Main.Size = UDim2.new(0, 400, 0, 300)
  54. Main.Style = Enum.FrameStyle.DropShadow
  55.  
  56. BiomeTP.Name = "Biome TP"
  57. BiomeTP.Parent = Main
  58. BiomeTP.BackgroundColor3 = Color3.new(0, 0, 0)
  59. BiomeTP.Position = UDim2.new(-0.000559855253, 0, -0.00259625912, 0)
  60. BiomeTP.Size = UDim2.new(0, 100, 0, 25)
  61. BiomeTP.Style = Enum.ButtonStyle.RobloxRoundDropdownButton
  62. BiomeTP.Font = Enum.Font.SourceSans
  63. BiomeTP.Text = "Biome TP"
  64. BiomeTP.TextColor3 = Color3.new(0, 0, 0)
  65. BiomeTP.TextSize = 14
  66.  
  67. ShopTP.Name = "Shop TP"
  68. ShopTP.Parent = Main
  69. ShopTP.BackgroundColor3 = Color3.new(0, 0, 0)
  70. ShopTP.Position = UDim2.new(0.247200638, 0, -0.00259625912, 0)
  71. ShopTP.Size = UDim2.new(0, 100, 0, 25)
  72. ShopTP.Style = Enum.ButtonStyle.RobloxRoundDropdownButton
  73. ShopTP.Font = Enum.Font.SourceSans
  74. ShopTP.Text = "Shop TP"
  75. ShopTP.TextColor3 = Color3.new(0, 0, 0)
  76. ShopTP.TextSize = 14
  77.  
  78. Farming.Name = "Farming"
  79. Farming.Parent = Main
  80. Farming.BackgroundColor3 = Color3.new(0, 0, 0)
  81. Farming.Position = UDim2.new(0.497200638, 0, -0.00259625912, 0)
  82. Farming.Size = UDim2.new(0, 100, 0, 25)
  83. Farming.Style = Enum.ButtonStyle.RobloxRoundDropdownButton
  84. Farming.Font = Enum.Font.SourceSans
  85. Farming.Text = "Farming"
  86. Farming.TextColor3 = Color3.new(0, 0, 0)
  87. Farming.TextSize = 14
  88.  
  89. Otheruseful.Name = "Other useful"
  90. Otheruseful.Parent = Main
  91. Otheruseful.BackgroundColor3 = Color3.new(0, 0, 0)
  92. Otheruseful.Position = UDim2.new(0.747200608, 0, -0.00259625912, 0)
  93. Otheruseful.Size = UDim2.new(0, 100, 0, 25)
  94. Otheruseful.Style = Enum.ButtonStyle.RobloxRoundDropdownButton
  95. Otheruseful.Font = Enum.Font.SourceSans
  96. Otheruseful.Text = "Other useful"
  97. Otheruseful.TextColor3 = Color3.new(0, 0, 0)
  98. Otheruseful.TextSize = 14
  99.  
  100. BiomeTPFrame.Name = "Biome TP Frame"
  101. BiomeTPFrame.Parent = ArmySimGUI
  102. BiomeTPFrame.BackgroundColor3 = Color3.new(0.392157, 0.392157, 0.392157)
  103. BiomeTPFrame.BorderSizePixel = 0
  104. BiomeTPFrame.Position = UDim2.new(0.0287713706, 0, 0.649877131, 0)
  105. BiomeTPFrame.Size = UDim2.new(0, 375, 0, 250)
  106. BiomeTPFrame.Visible = false
  107.  
  108. Spawnleaderboards.Name = "Spawn (leaderboards)"
  109. Spawnleaderboards.Parent = BiomeTPFrame
  110. Spawnleaderboards.BackgroundColor3 = Color3.new(1, 1, 1)
  111. Spawnleaderboards.Position = UDim2.new(0.0987578928, 0, 0.101248138, 0)
  112. Spawnleaderboards.Size = UDim2.new(0, 125, 0, 50)
  113. Spawnleaderboards.Style = Enum.ButtonStyle.RobloxRoundDropdownButton
  114. Spawnleaderboards.Font = Enum.Font.SourceSans
  115. Spawnleaderboards.Text = "Spawn (leaderboards)"
  116. Spawnleaderboards.TextColor3 = Color3.new(0, 0, 0)
  117. Spawnleaderboards.TextSize = 14
  118.  
  119. Forest.Name = "Forest"
  120. Forest.Parent = BiomeTPFrame
  121. Forest.BackgroundColor3 = Color3.new(1, 1, 1)
  122. Forest.Position = UDim2.new(0.100000001, 0, 0.397000015, 0)
  123. Forest.Size = UDim2.new(0, 125, 0, 50)
  124. Forest.Style = Enum.ButtonStyle.RobloxRoundDropdownButton
  125. Forest.Font = Enum.Font.SourceSans
  126. Forest.Text = "Forest"
  127. Forest.TextColor3 = Color3.new(0, 0, 0)
  128. Forest.TextSize = 14
  129.  
  130. Desert.Name = "Desert"
  131. Desert.Parent = BiomeTPFrame
  132. Desert.BackgroundColor3 = Color3.new(1, 1, 1)
  133. Desert.Position = UDim2.new(0.0987578928, 0, 0.697248161, 0)
  134. Desert.Size = UDim2.new(0, 125, 0, 50)
  135. Desert.Style = Enum.ButtonStyle.RobloxRoundDropdownButton
  136. Desert.Font = Enum.Font.SourceSans
  137. Desert.Text = "Desert"
  138. Desert.TextColor3 = Color3.new(0, 0, 0)
  139. Desert.TextSize = 14
  140.  
  141. EnchantedForest.Name = "Enchanted Forest"
  142. EnchantedForest.Parent = BiomeTPFrame
  143. EnchantedForest.BackgroundColor3 = Color3.new(1, 1, 1)
  144. EnchantedForest.Position = UDim2.new(0.565424621, 0, 0.101248138, 0)
  145. EnchantedForest.Size = UDim2.new(0, 125, 0, 50)
  146. EnchantedForest.Style = Enum.ButtonStyle.RobloxRoundDropdownButton
  147. EnchantedForest.Font = Enum.Font.SourceSans
  148. EnchantedForest.Text = "Enchanted Forest"
  149. EnchantedForest.TextColor3 = Color3.new(0, 0, 0)
  150. EnchantedForest.TextSize = 14
  151.  
  152. Tundra.Name = "Tundra"
  153. Tundra.Parent = BiomeTPFrame
  154. Tundra.BackgroundColor3 = Color3.new(1, 1, 1)
  155. Tundra.Position = UDim2.new(0.56400001, 0, 0.396999985, 0)
  156. Tundra.Size = UDim2.new(0, 125, 0, 50)
  157. Tundra.Style = Enum.ButtonStyle.RobloxRoundDropdownButton
  158. Tundra.Font = Enum.Font.SourceSans
  159. Tundra.Text = "Tundra"
  160. Tundra.TextColor3 = Color3.new(0, 0, 0)
  161. Tundra.TextSize = 14
  162.  
  163. Depths.Name = "Depths"
  164. Depths.Parent = BiomeTPFrame
  165. Depths.BackgroundColor3 = Color3.new(1, 1, 1)
  166. Depths.Position = UDim2.new(0.565424621, 0, 0.697248161, 0)
  167. Depths.Size = UDim2.new(0, 125, 0, 50)
  168. Depths.Style = Enum.ButtonStyle.RobloxRoundDropdownButton
  169. Depths.Font = Enum.Font.SourceSans
  170. Depths.Text = "Depths"
  171. Depths.TextColor3 = Color3.new(0, 0, 0)
  172. Depths.TextSize = 14
  173.  
  174. OtherusefulFrame.Archivable = false
  175. OtherusefulFrame.Name = "Other useful Frame"
  176. OtherusefulFrame.Parent = ArmySimGUI
  177. OtherusefulFrame.BackgroundColor3 = Color3.new(0.392157, 0.392157, 0.392157)
  178. OtherusefulFrame.BorderSizePixel = 0
  179. OtherusefulFrame.Position = UDim2.new(0.0287714154, 0, 0.649877131, 0)
  180. OtherusefulFrame.Size = UDim2.new(0, 375, 0, 250)
  181.  
  182. ClaimBase.Name = "Claim Base"
  183. ClaimBase.Parent = OtherusefulFrame
  184. ClaimBase.BackgroundColor3 = Color3.new(1, 1, 1)
  185. ClaimBase.Position = UDim2.new(0.0995728225, 0, 0.0732874498, 0)
  186. ClaimBase.Size = UDim2.new(0, 300, 0, 50)
  187. ClaimBase.Font = Enum.Font.SourceSans
  188. ClaimBase.Text = "Claim A Base"
  189. ClaimBase.TextColor3 = Color3.new(0, 0, 0)
  190. ClaimBase.TextSize = 14
  191.  
  192. AutoWandON.Name = "Auto Wand: ON"
  193. AutoWandON.Parent = OtherusefulFrame
  194. AutoWandON.BackgroundColor3 = Color3.new(1, 1, 1)
  195. AutoWandON.Position = UDim2.new(0.0995728374, 0, 0.461287588, 0)
  196. AutoWandON.Size = UDim2.new(0, 125, 0, 50)
  197. AutoWandON.Font = Enum.Font.SourceSans
  198. AutoWandON.Text = "Auto Wand: ON"
  199. AutoWandON.TextColor3 = Color3.new(0, 0, 0)
  200. AutoWandON.TextSize = 14
  201.  
  202. AutoWandOFF.Name = "Auto Wand: OFF"
  203. AutoWandOFF.Parent = OtherusefulFrame
  204. AutoWandOFF.BackgroundColor3 = Color3.new(1, 1, 1)
  205. AutoWandOFF.Position = UDim2.new(0.566239476, 0, 0.461287588, 0)
  206. AutoWandOFF.Size = UDim2.new(0, 125, 0, 50)
  207. AutoWandOFF.Font = Enum.Font.SourceSans
  208. AutoWandOFF.Text = "Auto Wand: OFF"
  209. AutoWandOFF.TextColor3 = Color3.new(0, 0, 0)
  210. AutoWandOFF.TextSize = 14
  211.  
  212. FarmingFrame.Archivable = false
  213. FarmingFrame.Name = "Farming Frame"
  214. FarmingFrame.Parent = ArmySimGUI
  215. FarmingFrame.BackgroundColor3 = Color3.new(0.392157, 0.392157, 0.392157)
  216. FarmingFrame.BorderSizePixel = 0
  217. FarmingFrame.Position = UDim2.new(0.0287713408, 0, 0.649877131, 0)
  218. FarmingFrame.Size = UDim2.new(0, 375, 0, 250)
  219. FarmingFrame.Visible = false
  220.  
  221. BeginnerON.Name = "Beginner ON"
  222. BeginnerON.Parent = FarmingFrame
  223. BeginnerON.BackgroundColor3 = Color3.new(1, 1, 1)
  224. BeginnerON.Position = UDim2.new(0.0995728746, 0, 0.0412873551, 0)
  225. BeginnerON.Size = UDim2.new(0, 130, 0, 30)
  226. BeginnerON.Font = Enum.Font.SourceSans
  227. BeginnerON.Text = "Beginner: ON"
  228. BeginnerON.TextColor3 = Color3.new(0, 0, 0)
  229. BeginnerON.TextSize = 14
  230.  
  231. BeginnerOFF.Name = "Beginner OFF"
  232. BeginnerOFF.Parent = FarmingFrame
  233. BeginnerOFF.BackgroundColor3 = Color3.new(1, 1, 1)
  234. BeginnerOFF.Position = UDim2.new(0.552906215, 0, 0.0412873551, 0)
  235. BeginnerOFF.Size = UDim2.new(0, 130, 0, 30)
  236. BeginnerOFF.Font = Enum.Font.SourceSans
  237. BeginnerOFF.Text = "Beginner: OFF"
  238. BeginnerOFF.TextColor3 = Color3.new(0, 0, 0)
  239. BeginnerOFF.TextSize = 14
  240.  
  241. MehON.Name = "Meh ON"
  242. MehON.Parent = FarmingFrame
  243. MehON.BackgroundColor3 = Color3.new(1, 1, 1)
  244. MehON.Position = UDim2.new(0.0995728746, 0, 0.185287356, 0)
  245. MehON.Size = UDim2.new(0, 130, 0, 30)
  246. MehON.Font = Enum.Font.SourceSans
  247. MehON.Text = "Meh: ON"
  248. MehON.TextColor3 = Color3.new(0, 0, 0)
  249. MehON.TextSize = 14
  250.  
  251. MehOFF.Name = "Meh OFF"
  252. MehOFF.Parent = FarmingFrame
  253. MehOFF.BackgroundColor3 = Color3.new(1, 1, 1)
  254. MehOFF.Position = UDim2.new(0.552906215, 0, 0.185287356, 0)
  255. MehOFF.Size = UDim2.new(0, 130, 0, 30)
  256. MehOFF.Font = Enum.Font.SourceSans
  257. MehOFF.Text = "Meh: OFF"
  258. MehOFF.TextColor3 = Color3.new(0, 0, 0)
  259. MehOFF.TextSize = 14
  260.  
  261. ReallyGoodOFF.Name = "ReallyGood OFF"
  262. ReallyGoodOFF.Parent = FarmingFrame
  263. ReallyGoodOFF.BackgroundColor3 = Color3.new(1, 1, 1)
  264. ReallyGoodOFF.Position = UDim2.new(0.552906215, 0, 0.477287352, 0)
  265. ReallyGoodOFF.Size = UDim2.new(0, 130, 0, 30)
  266. ReallyGoodOFF.Font = Enum.Font.SourceSans
  267. ReallyGoodOFF.Text = "ReallyGood: OFF"
  268. ReallyGoodOFF.TextColor3 = Color3.new(0, 0, 0)
  269. ReallyGoodOFF.TextSize = 14
  270.  
  271. ReallyGoodON.Name = "ReallyGood ON"
  272. ReallyGoodON.Parent = FarmingFrame
  273. ReallyGoodON.BackgroundColor3 = Color3.new(1, 1, 1)
  274. ReallyGoodON.Position = UDim2.new(0.0995728746, 0, 0.477287352, 0)
  275. ReallyGoodON.Size = UDim2.new(0, 130, 0, 30)
  276. ReallyGoodON.Font = Enum.Font.SourceSans
  277. ReallyGoodON.Text = "ReallyGood: ON"
  278. ReallyGoodON.TextColor3 = Color3.new(0, 0, 0)
  279. ReallyGoodON.TextSize = 14
  280.  
  281. GoodOFF.Name = "Good OFF"
  282. GoodOFF.Parent = FarmingFrame
  283. GoodOFF.BackgroundColor3 = Color3.new(1, 1, 1)
  284. GoodOFF.Position = UDim2.new(0.552906215, 0, 0.333287358, 0)
  285. GoodOFF.Size = UDim2.new(0, 130, 0, 30)
  286. GoodOFF.Font = Enum.Font.SourceSans
  287. GoodOFF.Text = "Good: OFF"
  288. GoodOFF.TextColor3 = Color3.new(0, 0, 0)
  289. GoodOFF.TextSize = 14
  290.  
  291. GoodON.Name = "Good ON"
  292. GoodON.Parent = FarmingFrame
  293. GoodON.BackgroundColor3 = Color3.new(1, 1, 1)
  294. GoodON.Position = UDim2.new(0.0995728746, 0, 0.333287358, 0)
  295. GoodON.Size = UDim2.new(0, 130, 0, 30)
  296. GoodON.Font = Enum.Font.SourceSans
  297. GoodON.Text = "Good: ON"
  298. GoodON.TextColor3 = Color3.new(0, 0, 0)
  299. GoodON.TextSize = 14
  300.  
  301. BestOFF.Name = "Best OFF"
  302. BestOFF.Parent = FarmingFrame
  303. BestOFF.BackgroundColor3 = Color3.new(1, 1, 1)
  304. BestOFF.Position = UDim2.new(0.552906215, 0, 0.769287348, 0)
  305. BestOFF.Size = UDim2.new(0, 130, 0, 30)
  306. BestOFF.Font = Enum.Font.SourceSans
  307. BestOFF.Text = "Best: OFF"
  308. BestOFF.TextColor3 = Color3.new(0, 0, 0)
  309. BestOFF.TextSize = 14
  310.  
  311. BestON.Name = "Best ON"
  312. BestON.Parent = FarmingFrame
  313. BestON.BackgroundColor3 = Color3.new(1, 1, 1)
  314. BestON.Position = UDim2.new(0.0995728746, 0, 0.769287348, 0)
  315. BestON.Size = UDim2.new(0, 130, 0, 30)
  316. BestON.Font = Enum.Font.SourceSans
  317. BestON.Text = "Best: ON"
  318. BestON.TextColor3 = Color3.new(0, 0, 0)
  319. BestON.TextSize = 14
  320.  
  321. EvenBetterOFF.Name = "EvenBetter OFF"
  322. EvenBetterOFF.Parent = FarmingFrame
  323. EvenBetterOFF.BackgroundColor3 = Color3.new(1, 1, 1)
  324. EvenBetterOFF.Position = UDim2.new(0.552906215, 0, 0.625287354, 0)
  325. EvenBetterOFF.Size = UDim2.new(0, 130, 0, 30)
  326. EvenBetterOFF.Font = Enum.Font.SourceSans
  327. EvenBetterOFF.Text = "EvenBetter: OFF"
  328. EvenBetterOFF.TextColor3 = Color3.new(0, 0, 0)
  329. EvenBetterOFF.TextSize = 14
  330.  
  331. EvenBetterON.Name = "EvenBetter ON"
  332. EvenBetterON.Parent = FarmingFrame
  333. EvenBetterON.BackgroundColor3 = Color3.new(1, 1, 1)
  334. EvenBetterON.Position = UDim2.new(0.0995728746, 0, 0.625287354, 0)
  335. EvenBetterON.Size = UDim2.new(0, 130, 0, 30)
  336. EvenBetterON.Font = Enum.Font.SourceSans
  337. EvenBetterON.Text = "EvenBetter: ON"
  338. EvenBetterON.TextColor3 = Color3.new(0, 0, 0)
  339. EvenBetterON.TextSize = 14
  340.  
  341. ShopTPFrame.Archivable = false
  342. ShopTPFrame.Name = "Shop TP Frame"
  343. ShopTPFrame.Parent = ArmySimGUI
  344. ShopTPFrame.BackgroundColor3 = Color3.new(0.392157, 0.392157, 0.392157)
  345. ShopTPFrame.BorderSizePixel = 0
  346. ShopTPFrame.Position = UDim2.new(0.0287713706, 0, 0.649877131, 0)
  347. ShopTPFrame.Size = UDim2.new(0, 375, 0, 250)
  348. ShopTPFrame.Visible = false
  349.  
  350. ArmyShop.Name = "Army Shop"
  351. ArmyShop.Parent = ShopTPFrame
  352. ArmyShop.BackgroundColor3 = Color3.new(1, 1, 1)
  353. ArmyShop.Position = UDim2.new(0.566239536, 0, 0.0612873547, 0)
  354. ArmyShop.Size = UDim2.new(0, 125, 0, 35)
  355. ArmyShop.Font = Enum.Font.SourceSans
  356. ArmyShop.Text = "Army Shop"
  357. ArmyShop.TextColor3 = Color3.new(0, 0, 0)
  358. ArmyShop.TextSize = 14
  359.  
  360. ArmorShop.Name = "Armor Shop"
  361. ArmorShop.Parent = ShopTPFrame
  362. ArmorShop.BackgroundColor3 = Color3.new(1, 1, 1)
  363. ArmorShop.Position = UDim2.new(0.0995728746, 0, 0.0612873547, 0)
  364. ArmorShop.Size = UDim2.new(0, 125, 0, 35)
  365. ArmorShop.Font = Enum.Font.SourceSans
  366. ArmorShop.Text = "Armor Shop"
  367. ArmorShop.TextColor3 = Color3.new(0, 0, 0)
  368. ArmorShop.TextSize = 14
  369.  
  370. DepthsShop.Name = "Depths Shop"
  371. DepthsShop.Parent = ShopTPFrame
  372. DepthsShop.BackgroundColor3 = Color3.new(1, 1, 1)
  373. DepthsShop.Position = UDim2.new(0.566239536, 0, 0.241287366, 0)
  374. DepthsShop.Size = UDim2.new(0, 125, 0, 35)
  375. DepthsShop.Font = Enum.Font.SourceSans
  376. DepthsShop.Text = "Depths Shop"
  377. DepthsShop.TextColor3 = Color3.new(0, 0, 0)
  378. DepthsShop.TextSize = 14
  379.  
  380. BagShop.Name = "Bag Shop"
  381. BagShop.Parent = ShopTPFrame
  382. BagShop.BackgroundColor3 = Color3.new(1, 1, 1)
  383. BagShop.Position = UDim2.new(0.0995728746, 0, 0.241287366, 0)
  384. BagShop.Size = UDim2.new(0, 125, 0, 35)
  385. BagShop.Font = Enum.Font.SourceSans
  386. BagShop.Text = "Bag Shop"
  387. BagShop.TextColor3 = Color3.new(0, 0, 0)
  388. BagShop.TextSize = 14
  389.  
  390. EnchantedShop.Name = "Enchanted Shop"
  391. EnchantedShop.Parent = ShopTPFrame
  392. EnchantedShop.BackgroundColor3 = Color3.new(1, 1, 1)
  393. EnchantedShop.Position = UDim2.new(0.566239536, 0, 0.413287342, 0)
  394. EnchantedShop.Size = UDim2.new(0, 125, 0, 35)
  395. EnchantedShop.Font = Enum.Font.SourceSans
  396. EnchantedShop.Text = "Enchanted Shop"
  397. EnchantedShop.TextColor3 = Color3.new(0, 0, 0)
  398. EnchantedShop.TextSize = 14
  399.  
  400. DesertBowShop.Name = "Desert (Bow) Shop"
  401. DesertBowShop.Parent = ShopTPFrame
  402. DesertBowShop.BackgroundColor3 = Color3.new(1, 1, 1)
  403. DesertBowShop.Position = UDim2.new(0.0995728746, 0, 0.413287342, 0)
  404. DesertBowShop.Size = UDim2.new(0, 125, 0, 35)
  405. DesertBowShop.Font = Enum.Font.SourceSans
  406. DesertBowShop.Text = "Desert (Bow) Shop"
  407. DesertBowShop.TextColor3 = Color3.new(0, 0, 0)
  408. DesertBowShop.TextSize = 14
  409.  
  410. SpellShop.Name = "Spell Shop"
  411. SpellShop.Parent = ShopTPFrame
  412. SpellShop.BackgroundColor3 = Color3.new(1, 1, 1)
  413. SpellShop.Position = UDim2.new(0.0995728746, 0, 0.593287349, 0)
  414. SpellShop.Size = UDim2.new(0, 125, 0, 35)
  415. SpellShop.Font = Enum.Font.SourceSans
  416. SpellShop.Text = "Spell Shop"
  417. SpellShop.TextColor3 = Color3.new(0, 0, 0)
  418. SpellShop.TextSize = 14
  419.  
  420. SwordShop.Name = "Sword Shop"
  421. SwordShop.Parent = ShopTPFrame
  422. SwordShop.BackgroundColor3 = Color3.new(1, 1, 1)
  423. SwordShop.Position = UDim2.new(0.566239536, 0, 0.593287349, 0)
  424. SwordShop.Size = UDim2.new(0, 125, 0, 35)
  425. SwordShop.Font = Enum.Font.SourceSans
  426. SwordShop.Text = "Sword Shop"
  427. SwordShop.TextColor3 = Color3.new(0, 0, 0)
  428. SwordShop.TextSize = 14
  429.  
  430. TundraShop.Name = "Tundra Shop"
  431. TundraShop.Parent = ShopTPFrame
  432. TundraShop.BackgroundColor3 = Color3.new(1, 1, 1)
  433. TundraShop.Position = UDim2.new(0.0995728746, 0, 0.76528734, 0)
  434. TundraShop.Size = UDim2.new(0, 125, 0, 35)
  435. TundraShop.Font = Enum.Font.SourceSans
  436. TundraShop.Text = "Tundra Shop"
  437. TundraShop.TextColor3 = Color3.new(0, 0, 0)
  438. TundraShop.TextSize = 14
  439.  
  440. Idonothing.Name = "I do nothing"
  441. Idonothing.Parent = ShopTPFrame
  442. Idonothing.BackgroundColor3 = Color3.new(1, 1, 1)
  443. Idonothing.Position = UDim2.new(0.566239536, 0, 0.76528734, 0)
  444. Idonothing.Size = UDim2.new(0, 125, 0, 35)
  445. Idonothing.Font = Enum.Font.SourceSans
  446. Idonothing.Text = "I do nothing"
  447. Idonothing.TextColor3 = Color3.new(0, 0, 0)
  448. Idonothing.TextSize = 14
  449.  
  450. -- Scripts:
  451. --Other Usefull
  452. ClaimBase.MouseButton1Click:connect(function()
  453.     local a = "addUser"
  454. local b = game:GetService("Workspace").Spawns["DEFAULT_SPAWN"]
  455. game:GetService("ReplicatedStorage").Event:FireServer(a, b)
  456. end)
  457.  
  458. AutoWandON.MouseButton1Click:connect(function()
  459.     _G.Wand = true
  460.  
  461. while _G.Wand == true do
  462. wait(0.1)
  463. local char = game.Players.LocalPlayer.character.HumanoidRootPart.CFrame.Position
  464. local a = "use"
  465. local b = "wand"
  466. local c = "place"
  467. local d = char
  468. game:GetService("ReplicatedStorage").Event:FireServer(a, b, c, d)
  469. end
  470. end)
  471.  
  472. AutoWandOFF.MouseButton1Click:connect(function()
  473.     _G.Wand = false
  474.  
  475. while _G.Wand == true do
  476. wait(0.1)
  477. local char = game.Players.LocalPlayer.character.HumanoidRootPart.CFrame.Position
  478. local a = "use"
  479. local b = "wand"
  480. local c = "place"
  481. local d = char
  482. game:GetService("ReplicatedStorage").Event:FireServer(a, b, c, d)
  483. end
  484. end)
  485.  
  486. --Shop TP
  487. ArmorShop.MouseButton1Click:connect(function()
  488.     game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(1124.23645, 87.5853806, 119.314468)
  489. end)
  490.  
  491. ArmyShop.MouseButton1Click:connect(function()
  492.     game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(1050.2533, 87.5853806, 121.922073)
  493. end)
  494.  
  495. BagShop.MouseButton1Click:connect(function()
  496.     game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(1001.00964, 87.5853806, 121.99678)
  497. end)
  498.  
  499. DepthsShop.MouseButton1Click:connect(function()
  500.     game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(2106.10254, 59.1203041, 267.611359)
  501. end)
  502.  
  503. DesertBowShop.MouseButton1Click:connect(function()
  504.     game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(187.034744, 129.556213, 308.163086)
  505. end)
  506.  
  507. EnchantedForest.MouseButton1Click:connect(function()
  508.     game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(791.938904, 101.585381, -974.497253)
  509. end)
  510.  
  511. SpellShop.MouseButton1Click:connect(function()
  512.     game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(822.733948, 101.926811, -340.111725)
  513. end)
  514.  
  515. SwordShop.MouseButton1Click:connect(function()
  516.     game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(1186.02502, 87.5853806, 119.56868)
  517. end)
  518.  
  519. Tundra.MouseButton1Click:connect(function()
  520.     game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-246.010269, 258.646515, 174.727142)
  521. end)
  522.  
  523. --Biome TP
  524. Depths.MouseButton1Click:connect(function()
  525.     game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(2092.89771, 59.1203041, 249.616516)
  526. end)
  527.  
  528. Desert.MouseButton1Click:connect(function()
  529.     game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(290.416626, 129.556213, 91.8538895)
  530. end)
  531.  
  532. EnchantedForest.MouseButton1Click:connect(function()
  533.     game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(825.13916, 101.585381, -743.900024)
  534. end)
  535.  
  536. Forest.MouseButton1Click:connect(function()
  537.     game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(688.116272, 101.926811, -29.3684387)
  538. end)
  539.  
  540. Spawnleaderboards.MouseButton1Click:connect(function()
  541.     game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(1318.60229, 87.5853806, 35.5183754)
  542. end)
  543.  
  544. Tundra.MouseButton1Click:connect(function()
  545.     game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-86.2176208, 258.646515, 16.429533)
  546. end)
  547.  
  548. --Auto Farms
  549. BeginnerON.MouseButton1Click:connect(function()
  550.     game.Players.LocalPlayer.character.HumanoidRootPart.CFrame = CFrame.new(1097.82, 88.544, 42.22)
  551.  
  552. wait(4)
  553.  
  554. _G.beginner = true
  555.  
  556. while _G.beginner == true do
  557. wait(0.4)
  558. for _,v in pairs(workspace.Entities.farmerModel:GetDescendants()) do
  559. if v.Name == "Torso" then
  560. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = v.CFrame
  561. end
  562. end
  563. end
  564. end)
  565.  
  566. BeginnerOFF.MouseButton1Click:connect(function()
  567.     _G.beginner = false
  568.  
  569. while _G.beginner == true do
  570. wait(0.4)
  571. for _,v in pairs(workspace.Entities.farmerModel:GetDescendants()) do
  572. if v.Name == "Torso" then
  573. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = v.CFrame
  574. end
  575. end
  576. end
  577. end)
  578.  
  579. MehON.MouseButton1Click:connect(function()
  580.     game.Players.LocalPlayer.character.HumanoidRootPart.CFrame = CFrame.new(569.512268, 102.884796, -109.121109)
  581.  
  582. wait(4)
  583.  
  584. _G.meh = true
  585.  
  586. while _G.meh == true do
  587. wait(0.4)
  588. for _,v in pairs(workspace.Entities.rockGolemModel:GetDescendants()) do
  589. if v.Name == "Torso" then
  590. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = v.CFrame
  591. end
  592. end
  593. end
  594. end)
  595.  
  596. MehOFF.MouseButton1Click:connect(function()
  597.     _G.meh = false
  598.  
  599. while _G.meh == true do
  600. wait(0.4)
  601. for _,v in pairs(workspace.Entities.rockGolemModel:GetDescendants()) do
  602. if v.Name == "Torso" then
  603. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = v.CFrame
  604. end
  605. end
  606. end
  607. end)
  608.  
  609. GoodON.MouseButton1Click:connect(function()
  610. game.Players.LocalPlayer.character.HumanoidRootPart.CFrame = CFrame.new(195.887848, 130.514191, -57.898304)
  611.  
  612. wait(4)
  613.  
  614. _G.good = true
  615.  
  616. while _G.good == true do
  617. wait(0.4)
  618. for _,v in pairs(workspace.Entities.sandGolemModel:GetDescendants()) do
  619. if v.Name == "Torso" then
  620. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = v.CFrame
  621. end
  622. end
  623. end
  624. end)
  625.  
  626. GoodOFF.MouseButton1Click:connect(function()
  627. _G.good = false
  628.  
  629. while _G.good == true do
  630. wait(0.4)
  631. for _,v in pairs(workspace.Entities.sandGolemModel:GetDescendants()) do
  632. if v.Name == "Torso" then
  633. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = v.CFrame
  634. end
  635. end
  636. end
  637. end)
  638.  
  639. ReallyGoodON.MouseButton1Click:connect(function()
  640.     game.Players.LocalPlayer.character.HumanoidRootPart.CFrame = CFrame.new(-162.815598, 259.724457, -126.625824)
  641.  
  642. wait(4)
  643.  
  644. _G.reallygood = true
  645.  
  646. while _G.reallygood == true do
  647. wait(0.4)
  648. for _,v in pairs(workspace.Entities.yetiModel:GetDescendants()) do
  649. if v.Name == "Torso" then
  650. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = v.CFrame
  651. end
  652. end
  653. end
  654. end)
  655.  
  656. ReallyGoodOFF.MouseButton1Click:connect(function()
  657.     _G.reallygood = false
  658.  
  659. while _G.reallygood == true do
  660. wait(0.4)
  661. for _,v in pairs(workspace.Entities.yetiModel:GetDescendants()) do
  662. if v.Name == "Torso" then
  663. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = v.CFrame
  664. end
  665. end
  666. end
  667. end)
  668.  
  669. EvenBetterON.MouseButton1Click:connect(function()
  670.     game.Players.LocalPlayer.character.HumanoidRootPart.CFrame = CFrame.new(-173.647263, 259.604523, 133.4702)
  671.  
  672. wait(4)
  673.  
  674. _G.evenbetter = true
  675.  
  676. while _G.evenbetter == true do
  677. wait(0.4)
  678. for _,v in pairs(workspace.Entities.kingYetiModel:GetDescendants()) do
  679. if v.Name == "Torso" then
  680. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = v.CFrame
  681. end
  682. end
  683. end
  684. end)
  685.  
  686. EvenBetterOFF.MouseButton1Click:connect(function()
  687.     _G.evenbetter = false
  688.  
  689. while _G.evenbetter == true do
  690. wait(0.4)
  691. for _,v in pairs(workspace.Entities.kingYetiModel:GetDescendants()) do
  692. if v.Name == "Torso" then
  693. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = v.CFrame
  694. end
  695. end
  696. end
  697. end)
  698.  
  699. BestON.MouseButton1Click:connect(function()
  700.     game.Players.LocalPlayer.character.HumanoidRootPart.CFrame = CFrame.new(692.531982, 102.543388, -971.082703)
  701.  
  702. wait(4)
  703.  
  704. _G.best = true
  705.  
  706. while _G.best == true do
  707. wait(0.4)
  708. for _,v in pairs(workspace.Entities.juggarModel:GetDescendants()) do
  709. if v.Name == "Torso" then
  710. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = v.CFrame
  711. end
  712. end
  713. end
  714. end)
  715.  
  716. BestOFF.MouseButton1Click:connect(function()
  717.     _G.best = false
  718.  
  719. while _G.best == true do
  720. wait(0.4)
  721. for _,v in pairs(workspace.Entities.juggarModel:GetDescendants()) do
  722. if v.Name == "Torso" then
  723. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = v.CFrame
  724. end
  725. end
  726. end
  727. end)
  728.  
  729. --Tabs
  730. BiomeTP.MouseButton1Down:connect(function()
  731.     BiomeTPFrame.Visible = true
  732.     OtherusefulFrame.Visible = false
  733.     FarmingFrame.Visible = false
  734.     ShopTPFrame.Visible = false
  735. end)
  736.  
  737. Otheruseful.MouseButton1Click:connect(function()
  738.     BiomeTPFrame.Visible = false
  739.     OtherusefulFrame.Visible = true
  740.     FarmingFrame.Visible = false
  741.     ShopTPFrame.Visible = false
  742. end)
  743.  
  744. Farming.MouseButton1Click:connect(function()
  745.     BiomeTPFrame.Visible = false
  746.     OtherusefulFrame.Visible = false
  747.     FarmingFrame.Visible = true
  748.     ShopTPFrame.Visible = false
  749. end)
  750.  
  751. ShopTP.MouseButton1Click:connect(function()
  752.     BiomeTPFrame.Visible = false
  753.     OtherusefulFrame.Visible = false
  754.     FarmingFrame.Visible = false
  755.     ShopTPFrame.Visible = true
  756. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement