Advertisement
Upscalefanatic3

Apocalypse Rising 2 GUI

Sep 13th, 2017
4,842
0
Never
1
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 29.26 KB | None | 0 0
  1. First Execute this: game.CoreGui.NotForExploiting:remove()
  2.  
  3. Now Execute this: local NotForExploiting = Instance.new("ScreenGui")
  4. local Main = Instance.new("Frame")
  5. local Ship = Instance.new("TextButton")
  6. local Title = Instance.new("TextLabel")
  7. local Hartford = Instance.new("TextButton")
  8. local Fremont = Instance.new("TextButton")
  9. local Farmville = Instance.new("TextButton")
  10. local Beaufort = Instance.new("TextButton")
  11. local Farms = Instance.new("TextButton")
  12. local FremontCliffs = Instance.new("TextButton")
  13. local HartfordValley = Instance.new("TextButton")
  14. local BeaufortCliffs = Instance.new("TextButton")
  15. local Peninsula = Instance.new("TextButton")
  16. local Observatory = Instance.new("TextButton")
  17. local Heli = Instance.new("TextButton")
  18. local Lighthouse = Instance.new("TextButton")
  19. local Close = Instance.new("TextButton")
  20. local ESP = Instance.new("TextButton")
  21. local Locations = Instance.new("TextButton")
  22. local NoFog = Instance.new("TextButton")
  23. local Secondary = Instance.new("Frame")
  24. local Open = Instance.new("TextButton")
  25.  
  26. NotForExploiting.Name = "NotForExploiting"
  27. NotForExploiting.Parent = game.CoreGui
  28.  
  29. Main.Name = "Main"
  30. Main.Parent = NotForExploiting
  31. Main.BackgroundColor3 = Color3.new(0.301961, 0.301961, 0.301961)
  32. Main.BorderColor3 = Color3.new(0.0431373, 0.0745098, 0.207843)
  33. Main.BorderSizePixel = 6
  34. Main.Position = UDim2.new(0.657142878, 0, 0.580684602, 0)
  35. Main.Size = UDim2.new(0.34375, 0, 0.415647924, 0)
  36. Main.Style = Enum.FrameStyle.RobloxRound
  37.  
  38. Ship.Name = "Ship"
  39. Ship.Parent = Main
  40. Ship.BorderSizePixel = 0
  41. Ship.Position = UDim2.new(0, 0, 0.188235298, 0)
  42. Ship.Size = UDim2.new(0.454035878, 0, 0.0941176489, 0)
  43. Ship.Modal = true
  44. Ship.Style = Enum.ButtonStyle.RobloxRoundButton
  45. Ship.Font = Enum.Font.Arial
  46. Ship.FontSize = Enum.FontSize.Size18
  47. Ship.Text = "Ship"
  48. Ship.TextColor3 = Color3.new(1, 1, 1)
  49. Ship.TextSize = 18
  50. Ship.MouseButton1Down:connect(function()
  51. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = workspace.Locations.Ship.CFrame
  52. end)
  53.  
  54. Title.Name = "Title"
  55. Title.Parent = Main
  56. Title.BackgroundTransparency = 1
  57. Title.Size = UDim2.new(0.998878896, 0, 0.111764707, 0)
  58. Title.Font = Enum.Font.ArialBold
  59. Title.FontSize = Enum.FontSize.Size24
  60. Title.Text = "Apoc 2 GUI"
  61. Title.TextColor3 = Color3.new(1, 1, 1)
  62. Title.TextSize = 24
  63. Title.TextStrokeColor3 = Color3.new(0, 0.501961, 0)
  64. Title.TextStrokeTransparency = 0.80000001192093
  65.  
  66. Hartford.Name = "Hartford"
  67. Hartford.Parent = Main
  68. Hartford.BorderSizePixel = 0
  69. Hartford.Position = UDim2.new(0.544843078, 0, 0.188235298, 0)
  70. Hartford.Size = UDim2.new(0.454035878, 0, 0.0941176489, 0)
  71. Hartford.Modal = true
  72. Hartford.Style = Enum.ButtonStyle.RobloxRoundButton
  73. Hartford.Font = Enum.Font.Arial
  74. Hartford.FontSize = Enum.FontSize.Size18
  75. Hartford.Text = "Hartford"
  76. Hartford.TextColor3 = Color3.new(1, 1, 1)
  77. Hartford.TextSize = 18
  78. Hartford.MouseButton1Down:connect(function()
  79. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = workspace.Locations.Hartford.CFrame
  80. end)
  81.  
  82. Fremont.Name = "Fremont"
  83. Fremont.Parent = Main
  84. Fremont.BorderSizePixel = 0
  85. Fremont.Position = UDim2.new(0.544843078, 0, 0.291176468, 0)
  86. Fremont.Size = UDim2.new(0.454035878, 0, 0.0941176489, 0)
  87. Fremont.Modal = true
  88. Fremont.Style = Enum.ButtonStyle.RobloxRoundButton
  89. Fremont.Font = Enum.Font.Arial
  90. Fremont.FontSize = Enum.FontSize.Size18
  91. Fremont.Text = "Fremont"
  92. Fremont.TextColor3 = Color3.new(1, 1, 1)
  93. Fremont.TextSize = 18
  94. Fremont.MouseButton1Down:connect(function()
  95. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = workspace.Locations.Fremont.CFrame
  96. end)
  97.  
  98. Farmville.Name = "Farmville"
  99. Farmville.Parent = Main
  100. Farmville.BorderSizePixel = 0
  101. Farmville.Position = UDim2.new(0.544843078, 0, 0.391176462, 0)
  102. Farmville.Size = UDim2.new(0.454035878, 0, 0.0941176489, 0)
  103. Farmville.Modal = true
  104. Farmville.Style = Enum.ButtonStyle.RobloxRoundButton
  105. Farmville.Font = Enum.Font.Arial
  106. Farmville.FontSize = Enum.FontSize.Size18
  107. Farmville.Text = "Farmville"
  108. Farmville.TextColor3 = Color3.new(1, 1, 1)
  109. Farmville.TextSize = 18
  110. Farmville.MouseButton1Down:connect(function()
  111. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = workspace.Locations.Farmville.CFrame
  112. end)
  113.  
  114. Beaufort.Name = "Beaufort"
  115. Beaufort.Parent = Main
  116. Beaufort.BorderSizePixel = 0
  117. Beaufort.Position = UDim2.new(0.544843078, 0, 0.494117647, 0)
  118. Beaufort.Size = UDim2.new(0.454035878, 0, 0.0941176489, 0)
  119. Beaufort.Modal = true
  120. Beaufort.Style = Enum.ButtonStyle.RobloxRoundButton
  121. Beaufort.Font = Enum.Font.Arial
  122. Beaufort.FontSize = Enum.FontSize.Size18
  123. Beaufort.Text = "Beaufort"
  124. Beaufort.TextColor3 = Color3.new(1, 1, 1)
  125. Beaufort.TextSize = 18
  126. Beaufort.MouseButton1Down:connect(function()
  127. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = workspace.Locations.Beaufort.CFrame
  128. end)
  129.  
  130. Farms.Name = "Farms"
  131. Farms.Parent = Main
  132. Farms.BorderSizePixel = 0
  133. Farms.Position = UDim2.new(0.544843078, 0, 0.600000024, 0)
  134. Farms.Size = UDim2.new(0.454035878, 0, 0.0941176489, 0)
  135. Farms.Modal = true
  136. Farms.Style = Enum.ButtonStyle.RobloxRoundButton
  137. Farms.Font = Enum.Font.Arial
  138. Farms.FontSize = Enum.FontSize.Size18
  139. Farms.Text = "Farms"
  140. Farms.TextColor3 = Color3.new(1, 1, 1)
  141. Farms.TextSize = 18
  142. Farms.MouseButton1Down:connect(function()
  143. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = workspace.Locations.Farms.CFrame
  144. end)
  145.  
  146. FremontCliffs.Name = "Fremont Cliffs"
  147. FremontCliffs.Parent = Main
  148. FremontCliffs.BorderSizePixel = 0
  149. FremontCliffs.Position = UDim2.new(0.544843078, 0, 0.702941179, 0)
  150. FremontCliffs.Size = UDim2.new(0.454035878, 0, 0.0941176489, 0)
  151. FremontCliffs.Modal = true
  152. FremontCliffs.Style = Enum.ButtonStyle.RobloxRoundButton
  153. FremontCliffs.Font = Enum.Font.Arial
  154. FremontCliffs.FontSize = Enum.FontSize.Size18
  155. FremontCliffs.Text = "Fremont Cliffs"
  156. FremontCliffs.TextColor3 = Color3.new(1, 1, 1)
  157. FremontCliffs.TextSize = 18
  158. FremontCliffs.MouseButton1Down:connect(function()
  159. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = workspace.Locations['Fremont Cliffs'].CFrame
  160. end)
  161.  
  162. HartfordValley.Name = "Hartford Valley"
  163. HartfordValley.Parent = Main
  164. HartfordValley.BorderSizePixel = 0
  165. HartfordValley.Position = UDim2.new(0, 0, 0.291176468, 0)
  166. HartfordValley.Size = UDim2.new(0.454035878, 0, 0.0941176489, 0)
  167. HartfordValley.Modal = true
  168. HartfordValley.Style = Enum.ButtonStyle.RobloxRoundButton
  169. HartfordValley.Font = Enum.Font.Arial
  170. HartfordValley.FontSize = Enum.FontSize.Size18
  171. HartfordValley.Text = "Hartford Valley"
  172. HartfordValley.TextColor3 = Color3.new(1, 1, 1)
  173. HartfordValley.TextSize = 18
  174. HartfordValley.MouseButton1Down:connect(function()
  175. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = workspace.Locations['Hartford Valley'].CFrame
  176. end)
  177.  
  178. BeaufortCliffs.Name = "Beaufort Cliffs"
  179. BeaufortCliffs.Parent = Main
  180. BeaufortCliffs.BorderSizePixel = 0
  181. BeaufortCliffs.Position = UDim2.new(0, 0, 0.702941179, 0)
  182. BeaufortCliffs.Size = UDim2.new(0.454035878, 0, 0.0941176489, 0)
  183. BeaufortCliffs.Modal = true
  184. BeaufortCliffs.Style = Enum.ButtonStyle.RobloxRoundButton
  185. BeaufortCliffs.Font = Enum.Font.Arial
  186. BeaufortCliffs.FontSize = Enum.FontSize.Size18
  187. BeaufortCliffs.Text = "Beaufort Cliffs"
  188. BeaufortCliffs.TextColor3 = Color3.new(1, 1, 1)
  189. BeaufortCliffs.TextSize = 18
  190. BeaufortCliffs.MouseButton1Down:connect(function()
  191. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = workspace.Locations['Beaufort Cliffs'].CFrame
  192. end)
  193.  
  194. Peninsula.Name = "Peninsula"
  195. Peninsula.Parent = Main
  196. Peninsula.BorderSizePixel = 0
  197. Peninsula.Position = UDim2.new(0, 0, 0.600000024, 0)
  198. Peninsula.Size = UDim2.new(0.454035878, 0, 0.0941176489, 0)
  199. Peninsula.Modal = true
  200. Peninsula.Style = Enum.ButtonStyle.RobloxRoundButton
  201. Peninsula.Font = Enum.Font.Arial
  202. Peninsula.FontSize = Enum.FontSize.Size18
  203. Peninsula.Text = "Peninsula"
  204. Peninsula.TextColor3 = Color3.new(1, 1, 1)
  205. Peninsula.TextSize = 18
  206. Peninsula.MouseButton1Down:connect(function()
  207. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = workspace.Locations.Peninsula.CFrame
  208. end)
  209.  
  210. Observatory.Name = "Observatory"
  211. Observatory.Parent = Main
  212. Observatory.BorderSizePixel = 0
  213. Observatory.Position = UDim2.new(0, 0, 0.494117647, 0)
  214. Observatory.Size = UDim2.new(0.454035878, 0, 0.0941176489, 0)
  215. Observatory.Modal = true
  216. Observatory.Style = Enum.ButtonStyle.RobloxRoundButton
  217. Observatory.Font = Enum.Font.Arial
  218. Observatory.FontSize = Enum.FontSize.Size18
  219. Observatory.Text = "Observatory"
  220. Observatory.TextColor3 = Color3.new(1, 1, 1)
  221. Observatory.TextSize = 18
  222. Observatory.MouseButton1Down:connect(function()
  223. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = workspace.Locations.Observatory.CFrame
  224. end)
  225.  
  226. Heli.Name = "Heli"
  227. Heli.Parent = Main
  228. Heli.BorderSizePixel = 0
  229. Heli.Position = UDim2.new(0, 0, 0.391176462, 0)
  230. Heli.Size = UDim2.new(0.454035878, 0, 0.0941176489, 0)
  231. Heli.Modal = true
  232. Heli.Style = Enum.ButtonStyle.RobloxRoundButton
  233. Heli.Font = Enum.Font.Arial
  234. Heli.FontSize = Enum.FontSize.Size18
  235. Heli.Text = "Heli"
  236. Heli.TextColor3 = Color3.new(1, 1, 1)
  237. Heli.TextSize = 18
  238. Heli.MouseButton1Down:connect(function()
  239. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = workspace.Locations.Heli.CFrame
  240. end)
  241.  
  242. Lighthouse.Name = "Lighthouse"
  243. Lighthouse.Parent = Main
  244. Lighthouse.BorderSizePixel = 0
  245. Lighthouse.Position = UDim2.new(0, 0, 0.808823526, 0)
  246. Lighthouse.Size = UDim2.new(0.454035878, 0, 0.0941176489, 0)
  247. Lighthouse.Modal = true
  248. Lighthouse.Style = Enum.ButtonStyle.RobloxRoundButton
  249. Lighthouse.Font = Enum.Font.Arial
  250. Lighthouse.FontSize = Enum.FontSize.Size18
  251. Lighthouse.Text = "Lighthouse"
  252. Lighthouse.TextColor3 = Color3.new(1, 1, 1)
  253. Lighthouse.TextSize = 18
  254. Lighthouse.MouseButton1Down:connect(function()
  255. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = workspace.Locations.Lighthouse.CFrame
  256. end)
  257.  
  258. NoFog.Name = "No Fog"
  259. NoFog.Parent = Main
  260. NoFog.BorderSizePixel = 0
  261. NoFog.Position = UDim2.new(0.545000017, 0, 0.911000013, 0)
  262. NoFog.Size = UDim2.new(0.454035878, 0, 0.0941176489, 0)
  263. NoFog.Modal = true
  264. NoFog.Style = Enum.ButtonStyle.RobloxRoundButton
  265. NoFog.Font = Enum.Font.Arial
  266. NoFog.FontSize = Enum.FontSize.Size18
  267. NoFog.Text = "No Fog"
  268. NoFog.TextColor3 = Color3.new(1, 1, 1)
  269. NoFog.TextSize = 18
  270. NoFog.MouseButton1Down:connect(function()
  271. while true do
  272. wait()
  273. game.Lighting.FogEnd = 100000
  274. end
  275. end)
  276.  
  277. Close.Name = "Close"
  278. Close.Parent = Main
  279. Close.BorderSizePixel = 0
  280. Close.Position = UDim2.new(0, 0, 0.00588235306, 0)
  281. Close.Size = UDim2.new(0.166223004, 0, 0.10882353, 0)
  282. Close.Modal = true
  283. Close.Style = Enum.ButtonStyle.RobloxRoundButton
  284. Close.Font = Enum.Font.Arial
  285. Close.FontSize = Enum.FontSize.Size18
  286. Close.Text = "Close"
  287. Close.TextColor3 = Color3.new(1, 1, 1)
  288. Close.TextSize = 18
  289. Close.MouseButton1Down:connect(function()
  290. Main.Visible = false
  291. Secondary.Visible = true
  292. end)
  293.  
  294. function doit(hey)
  295. local t1 = Instance.new('SurfaceGui',hey)
  296. t1.AlwaysOnTop = true
  297. local t1g = Instance.new('Frame',t1)
  298. t1g.Size = UDim2.new(1,0,1,0)
  299. t1g.BackgroundColor3 = t1.Parent.BrickColor.Color
  300. local t2 = Instance.new('SurfaceGui',hey)
  301. t2.AlwaysOnTop = true
  302. t2.Face = Enum.NormalId.Right
  303. local t2g = Instance.new('Frame',t2)
  304. t2g.Size = UDim2.new(1,0,1,0)
  305. t2g.BackgroundColor3 = t2.Parent.BrickColor.Color
  306. local t3 = Instance.new('SurfaceGui',hey)
  307. t3.AlwaysOnTop = true
  308. t3.Face = Enum.NormalId.Left
  309. local t3g = Instance.new('Frame',t3)
  310. t3g.Size = UDim2.new(1,0,1,0)
  311. t3g.BackgroundColor3 = t3.Parent.BrickColor.Color
  312. local t4 = Instance.new('SurfaceGui',hey)
  313. t4.AlwaysOnTop = true
  314. t4.Face = Enum.NormalId.Back
  315. local t4g = Instance.new('Frame',t4)
  316. t4g.Size = UDim2.new(1,0,1,0)
  317. t4g.BackgroundColor3 = t4.Parent.BrickColor.Color
  318. local t5 = Instance.new('SurfaceGui',hey)
  319. t5.AlwaysOnTop = true
  320. t5.Face = Enum.NormalId.Top
  321. local t5g = Instance.new('Frame',t5)
  322. t5g.Size = UDim2.new(1,0,1,0)
  323. t5g.BackgroundColor3 = t5.Parent.BrickColor.Color
  324. local t6 = Instance.new('SurfaceGui',hey)
  325. t6.AlwaysOnTop = true
  326. t6.Face = Enum.NormalId.Bottom
  327. local t6g = Instance.new('Frame',t6)
  328. t6g.Size = UDim2.new(1,0,1,0)
  329. t6g.BackgroundColor3 = t6.Parent.BrickColor.Color
  330. end
  331. function undo(chr)
  332. for i,v in pairs(chr:GetChildren()) do
  333. if v.ClassName == "Part" or v.ClassName == "MeshPart" then
  334. for a,c in pairs(v:GetChildren()) do
  335. if c.ClassName == "SurfaceGui" then
  336. c:Destroy()
  337. end
  338. if c.ClassName == "BillboardGui" and c.Name == "thingyye" then
  339. c:Destroy()
  340. end
  341. end
  342. end
  343. end
  344. end
  345.  
  346. ESP.Name = "ESP"
  347. ESP.Parent = Main
  348. ESP.BorderSizePixel = 0
  349. ESP.Position = UDim2.new(0.545000017, 0, 0.809000015, 0)
  350. ESP.Size = UDim2.new(0.454035878, 0, 0.0941176489, 0)
  351. ESP.Modal = true
  352. ESP.Style = Enum.ButtonStyle.RobloxRoundButton
  353. ESP.Font = Enum.Font.Arial
  354. ESP.FontSize = Enum.FontSize.Size18
  355. ESP.Text = "ESP On"
  356. ESP.TextColor3 = Color3.new(1, 1, 1)
  357. ESP.TextSize = 18
  358. ESP.MouseButton1Down:connect(function()
  359. if ESP.Text == "ESP On" then
  360. ESP.Text = "ESP Off"
  361. on = true
  362. for i,v in pairs(game.Players:GetChildren()) do
  363. if v.Character ~= game.Players.LocalPlayer.Character and v.Character.Head:FindFirstChild('ScreenGui') == nil then
  364. if v.Character:FindFirstChild('Head') then
  365. local bill = Instance.new('BillboardGui',v.Character.Head)
  366. bill.Name = "thingyye"
  367. bill.AlwaysOnTop = true
  368. bill.Size = UDim2.new(2,1,2)
  369. bill.Adornee = v.Character.Head
  370. local txt = Instance.new('TextLabel',bill)
  371. txt.Text = v.Name
  372. txt.BackgroundTransparency = 1
  373. txt.Size = UDim2.new(1,0,1,0)
  374. txt.TextColor3 = v.TeamColor.Color
  375. end
  376. for a,c in pairs(v.Character:GetChildren()) do
  377. if c.ClassName == "MeshPart" and c.Transparency ~= 1 then
  378. doit(c)
  379. elseif c.ClassName == "Part" and c.Transparency ~= 1 then
  380. doit(c)
  381. end
  382. end
  383. end
  384. end
  385. else
  386. ESP.Text = "ESP On"
  387. on = false
  388. for i,v in pairs(game.Players:GetChildren()) do
  389. undo(v.Character)
  390. end
  391. end
  392. end)
  393.  
  394. for i,v in pairs(game.Players:GetChildren()) do
  395. v.CharacterAdded:connect(function()
  396. v.Character:WaitForChild('Head')
  397. wait(1)
  398. if on == true then
  399. if v.Character ~= game.Players.LocalPlayer.Character and v.Character.Head:FindFirstChild('ScreenGui') == nil then
  400. if v.Character:FindFirstChild('Head') then
  401. local bill = Instance.new('BillboardGui',v.Character.Head)
  402. bill.Name = "thingyye"
  403. bill.AlwaysOnTop = true
  404. bill.Size = UDim2.new(2,1,2)
  405. bill.Adornee = v.Character.Head
  406. local txt = Instance.new('TextLabel',bill)
  407. txt.Text = v.Name
  408. txt.BackgroundTransparency = 1
  409. txt.Size = UDim2.new(1,0,1,0)
  410. txt.TextColor3 = v.TeamColor.Color
  411. end
  412. for a,c in pairs(v.Character:GetChildren()) do
  413. if c.ClassName == "MeshPart" and c.Transparency ~= 1 then
  414. doit(c)
  415. elseif c.ClassName == "Part" and c.Transparency ~= 1 then
  416. doit(c)
  417. end
  418. end
  419. end
  420. end
  421. end)
  422. end
  423.  
  424. Locations.Name = "Locations"
  425. Locations.Parent = Main
  426. Locations.BorderSizePixel = 0
  427. Locations.Position = UDim2.new(0, 0, 0.911032021, 0)
  428. Locations.Size = UDim2.new(0.454035878, 0, 0.0941176489, 0)
  429. Locations.Modal = true
  430. Locations.Style = Enum.ButtonStyle.RobloxRoundButton
  431. Locations.Font = Enum.Font.Arial
  432. Locations.FontSize = Enum.FontSize.Size18
  433. Locations.Text = "Location Markers On"
  434. Locations.TextColor3 = Color3.new(1, 1, 1)
  435. Locations.TextSize = 18
  436. Locations.MouseButton1Down:connect(function()
  437. if Locations.Text == "Location Markers On" then
  438. Locations.Text = "Location Markers Off"
  439. game.Workspace.Locations.Ship.BillboardGui.Frame.Visible = true
  440. game.Workspace.Locations.Hartford.BillboardGui.Frame.Visible = true
  441. game.Workspace.Locations.Fremont.BillboardGui.Frame.Visible = true
  442. game.Workspace.Locations.Farmville.BillboardGui.Frame.Visible = true
  443. game.Workspace.Locations.Beaufort.BillboardGui.Frame.Visible = true
  444. game.Workspace.Locations.Farms.BillboardGui.Frame.Visible = true
  445. game.Workspace.Locations['Fremont Cliffs'].BillboardGui.Frame.Visible = true
  446. game.Workspace.Locations['Hartford Valley'].BillboardGui.Frame.Visible = true
  447. game.Workspace.Locations['Beaufort Cliffs'].BillboardGui.Frame.Visible = true
  448. game.Workspace.Locations.Peninsula.BillboardGui.Frame.Visible = true
  449. game.Workspace.Locations.Observatory.BillboardGui.Frame.Visible = true
  450. game.Workspace.Locations.Heli.BillboardGui.Frame.Visible = true
  451. game.Workspace.Locations.Lighthouse.BillboardGui.Frame.Visible = true
  452. else
  453. Locations.Text = "Location Markers On"
  454. game.Workspace.Locations.Ship.BillboardGui.Frame.Visible = false
  455. game.Workspace.Locations.Hartford.BillboardGui.Frame.Visible = false
  456. game.Workspace.Locations.Fremont.BillboardGui.Frame.Visible = false
  457. game.Workspace.Locations.Farmville.BillboardGui.Frame.Visible = false
  458. game.Workspace.Locations.Beaufort.BillboardGui.Frame.Visible = false
  459. game.Workspace.Locations.Farms.BillboardGui.Frame.Visible = false
  460. game.Workspace.Locations['Fremont Cliffs'].BillboardGui.Frame.Visible = false
  461. game.Workspace.Locations['Hartford Valley'].BillboardGui.Frame.Visible = false
  462. game.Workspace.Locations['Beaufort Cliffs'].BillboardGui.Frame.Visible = false
  463. game.Workspace.Locations.Peninsula.BillboardGui.Frame.Visible = false
  464. game.Workspace.Locations.Observatory.BillboardGui.Frame.Visible = false
  465. game.Workspace.Locations.Heli.BillboardGui.Frame.Visible = false
  466. game.Workspace.Locations.Lighthouse.BillboardGui.Frame.Visible = false
  467. end
  468. end)
  469.  
  470.  
  471. Secondary.Name = "Secondary"
  472. Secondary.Parent = NotForExploiting
  473. Secondary.BackgroundColor3 = Color3.new(0.301961, 0.301961, 0.301961)
  474. Secondary.BackgroundTransparency = 1
  475. Secondary.BorderColor3 = Color3.new(0.0431373, 0.0745098, 0.207843)
  476. Secondary.BorderSizePixel = 0
  477. Secondary.Position = UDim2.new(0.657142878, 0, 0.580684602, 0)
  478. Secondary.Size = UDim2.new(0.34375, 0, 0.415647924, 0)
  479. Secondary.Visible = false
  480.  
  481. Open.Name = "Open"
  482. Open.Parent = Secondary
  483. Open.BorderSizePixel = 0
  484. Open.Position = UDim2.new(0.831115007, 0, 0.032352943, 0)
  485. Open.Size = UDim2.new(0.166223004, 0, 0.102941178, 0)
  486. Open.Modal = true
  487. Open.Style = Enum.ButtonStyle.RobloxRoundButton
  488. Open.Font = Enum.Font.Arial
  489. Open.FontSize = Enum.FontSize.Size18
  490. Open.Text = "Open"
  491. Open.TextColor3 = Color3.new(1, 1, 1)
  492. Open.TextSize = 18
  493. Open.MouseButton1Down:connect(function()
  494. Main.Visible = true
  495. Secondary.Visible = false
  496. end)
  497.  
  498. local BillboardGui = Instance.new("BillboardGui")
  499. local Frame = Instance.new("Frame")
  500. local TextLabel = Instance.new("TextLabel")
  501.  
  502. BillboardGui.Parent = game.Workspace.Locations.Ship
  503. BillboardGui.Size = UDim2.new(0, 200, 0, 50)
  504. BillboardGui.StudsOffset = Vector3.new(0, 60, 0)
  505.  
  506. Frame.Parent = BillboardGui
  507. Frame.BackgroundColor3 = Color3.new(1, 1, 1)
  508. Frame.BackgroundTransparency = 1
  509. Frame.Size = UDim2.new(0, 150, 0, 50)
  510. Frame.Visible = false
  511.  
  512. TextLabel.Parent = Frame
  513. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  514. TextLabel.BackgroundTransparency = 1
  515. TextLabel.Size = UDim2.new(0, 150, 0, 50)
  516. TextLabel.SizeConstraint = Enum.SizeConstraint.RelativeXX
  517. TextLabel.Font = Enum.Font.Cartoon
  518. TextLabel.FontSize = Enum.FontSize.Size18
  519. TextLabel.Text = "Ship"
  520. TextLabel.TextColor3 = Color3.new(0.333333, 1, 0.980392)
  521. TextLabel.TextSize = 24
  522.  
  523. local BillboardGui = Instance.new("BillboardGui")
  524. local Frame = Instance.new("Frame")
  525. local TextLabel = Instance.new("TextLabel")
  526.  
  527.  
  528. BillboardGui.Parent = game.Workspace.Locations.Hartford
  529. BillboardGui.Size = UDim2.new(0, 200, 0, 50)
  530. BillboardGui.StudsOffset = Vector3.new(0, 60, 0)
  531. BillboardGui.AlwaysOnTop = true
  532.  
  533. Frame.Parent = BillboardGui
  534. Frame.BackgroundColor3 = Color3.new(1, 1, 1)
  535. Frame.BackgroundTransparency = 1
  536. Frame.Size = UDim2.new(0, 150, 0, 50)
  537. Frame.Visible = false
  538.  
  539. TextLabel.Parent = Frame
  540. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  541. TextLabel.BackgroundTransparency = 1
  542. TextLabel.Size = UDim2.new(0, 150, 0, 50)
  543. TextLabel.SizeConstraint = Enum.SizeConstraint.RelativeXX
  544. TextLabel.Font = Enum.Font.Cartoon
  545. TextLabel.FontSize = Enum.FontSize.Size18
  546. TextLabel.Text = "Hartford"
  547. TextLabel.TextColor3 = Color3.new(0.333333, 1, 0.980392)
  548. TextLabel.TextSize = 24
  549.  
  550. local BillboardGui = Instance.new("BillboardGui")
  551. local Frame = Instance.new("Frame")
  552. local TextLabel = Instance.new("TextLabel")
  553.  
  554. BillboardGui.Parent = game.Workspace.Locations.Fremont
  555. BillboardGui.Size = UDim2.new(0, 200, 0, 50)
  556. BillboardGui.StudsOffset = Vector3.new(0, 60, 0)
  557. BillboardGui.AlwaysOnTop = true
  558.  
  559. Frame.Parent = BillboardGui
  560. Frame.BackgroundColor3 = Color3.new(1, 1, 1)
  561. Frame.BackgroundTransparency = 1
  562. Frame.Size = UDim2.new(0, 150, 0, 50)
  563. Frame.Visible = false
  564.  
  565. TextLabel.Parent = Frame
  566. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  567. TextLabel.BackgroundTransparency = 1
  568. TextLabel.Size = UDim2.new(0, 150, 0, 50)
  569. TextLabel.SizeConstraint = Enum.SizeConstraint.RelativeXX
  570. TextLabel.Font = Enum.Font.Cartoon
  571. TextLabel.FontSize = Enum.FontSize.Size18
  572. TextLabel.Text = "Fremont"
  573. TextLabel.TextColor3 = Color3.new(0.333333, 1, 0.980392)
  574. TextLabel.TextSize = 24
  575.  
  576. local BillboardGui = Instance.new("BillboardGui")
  577. local Frame = Instance.new("Frame")
  578. local TextLabel = Instance.new("TextLabel")
  579.  
  580. BillboardGui.Parent = game.Workspace.Locations.Farmville
  581. BillboardGui.Size = UDim2.new(0, 200, 0, 50)
  582. BillboardGui.StudsOffset = Vector3.new(0, 60, 0)
  583. BillboardGui.AlwaysOnTop = true
  584.  
  585. Frame.Parent = BillboardGui
  586. Frame.BackgroundColor3 = Color3.new(1, 1, 1)
  587. Frame.BackgroundTransparency = 1
  588. Frame.Size = UDim2.new(0, 150, 0, 50)
  589. Frame.Visible = false
  590.  
  591. TextLabel.Parent = Frame
  592. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  593. TextLabel.BackgroundTransparency = 1
  594. TextLabel.Size = UDim2.new(0, 150, 0, 50)
  595. TextLabel.SizeConstraint = Enum.SizeConstraint.RelativeXX
  596. TextLabel.Font = Enum.Font.Cartoon
  597. TextLabel.FontSize = Enum.FontSize.Size18
  598. TextLabel.Text = "Farmville"
  599. TextLabel.TextColor3 = Color3.new(0.333333, 1, 0.980392)
  600. TextLabel.TextSize = 24
  601.  
  602. local BillboardGui = Instance.new("BillboardGui")
  603. local Frame = Instance.new("Frame")
  604. local TextLabel = Instance.new("TextLabel")
  605.  
  606. BillboardGui.Parent = game.Workspace.Locations.Beaufort
  607. BillboardGui.Size = UDim2.new(0, 200, 0, 50)
  608. BillboardGui.StudsOffset = Vector3.new(0, 60, 0)
  609. BillboardGui.AlwaysOnTop = true
  610.  
  611. Frame.Parent = BillboardGui
  612. Frame.BackgroundColor3 = Color3.new(1, 1, 1)
  613. Frame.BackgroundTransparency = 1
  614. Frame.Size = UDim2.new(0, 150, 0, 50)
  615. Frame.Visible = false
  616.  
  617. TextLabel.Parent = Frame
  618. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  619. TextLabel.BackgroundTransparency = 1
  620. TextLabel.Size = UDim2.new(0, 150, 0, 50)
  621. TextLabel.SizeConstraint = Enum.SizeConstraint.RelativeXX
  622. TextLabel.Font = Enum.Font.Cartoon
  623. TextLabel.FontSize = Enum.FontSize.Size18
  624. TextLabel.Text = "Beaufort"
  625. TextLabel.TextColor3 = Color3.new(0.333333, 1, 0.980392)
  626. TextLabel.TextSize = 24
  627.  
  628. local BillboardGui = Instance.new("BillboardGui")
  629. local Frame = Instance.new("Frame")
  630. local TextLabel = Instance.new("TextLabel")
  631.  
  632. BillboardGui.Parent = game.Workspace.Locations.Farms
  633. BillboardGui.Size = UDim2.new(0, 200, 0, 50)
  634. BillboardGui.StudsOffset = Vector3.new(0, 60, 0)
  635. BillboardGui.AlwaysOnTop = true
  636.  
  637. Frame.Parent = BillboardGui
  638. Frame.BackgroundColor3 = Color3.new(1, 1, 1)
  639. Frame.BackgroundTransparency = 1
  640. Frame.Size = UDim2.new(0, 150, 0, 50)
  641. Frame.Visible = false
  642.  
  643. TextLabel.Parent = Frame
  644. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  645. TextLabel.BackgroundTransparency = 1
  646. TextLabel.Size = UDim2.new(0, 150, 0, 50)
  647. TextLabel.SizeConstraint = Enum.SizeConstraint.RelativeXX
  648. TextLabel.Font = Enum.Font.Cartoon
  649. TextLabel.FontSize = Enum.FontSize.Size18
  650. TextLabel.Text = "Farms"
  651. TextLabel.TextColor3 = Color3.new(0.333333, 1, 0.980392)
  652. TextLabel.TextSize = 24
  653.  
  654. local BillboardGui = Instance.new("BillboardGui")
  655. local Frame = Instance.new("Frame")
  656. local TextLabel = Instance.new("TextLabel")
  657.  
  658. BillboardGui.Parent = game.Workspace.Locations['Fremont Cliffs']
  659. BillboardGui.Size = UDim2.new(0, 200, 0, 50)
  660. BillboardGui.StudsOffset = Vector3.new(0, 60, 0)
  661. BillboardGui.AlwaysOnTop = true
  662.  
  663. Frame.Parent = BillboardGui
  664. Frame.BackgroundColor3 = Color3.new(1, 1, 1)
  665. Frame.BackgroundTransparency = 1
  666. Frame.Size = UDim2.new(0, 150, 0, 50)
  667. Frame.Visible = false
  668.  
  669. TextLabel.Parent = Frame
  670. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  671. TextLabel.BackgroundTransparency = 1
  672. TextLabel.Size = UDim2.new(0, 150, 0, 50)
  673. TextLabel.SizeConstraint = Enum.SizeConstraint.RelativeXX
  674. TextLabel.Font = Enum.Font.Cartoon
  675. TextLabel.FontSize = Enum.FontSize.Size18
  676. TextLabel.Text = "Fremont Cliffs"
  677. TextLabel.TextColor3 = Color3.new(0.333333, 1, 0.980392)
  678. TextLabel.TextSize = 24
  679.  
  680. local BillboardGui = Instance.new("BillboardGui")
  681. local Frame = Instance.new("Frame")
  682. local TextLabel = Instance.new("TextLabel")
  683.  
  684. BillboardGui.Parent = game.Workspace.Locations['Hartford Valley']
  685. BillboardGui.Size = UDim2.new(0, 200, 0, 50)
  686. BillboardGui.StudsOffset = Vector3.new(0, 60, 0)
  687. BillboardGui.AlwaysOnTop = true
  688.  
  689. Frame.Parent = BillboardGui
  690. Frame.BackgroundColor3 = Color3.new(1, 1, 1)
  691. Frame.BackgroundTransparency = 1
  692. Frame.Size = UDim2.new(0, 150, 0, 50)
  693. Frame.Visible = false
  694.  
  695. TextLabel.Parent = Frame
  696. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  697. TextLabel.BackgroundTransparency = 1
  698. TextLabel.Size = UDim2.new(0, 150, 0, 50)
  699. TextLabel.SizeConstraint = Enum.SizeConstraint.RelativeXX
  700. TextLabel.Font = Enum.Font.Cartoon
  701. TextLabel.FontSize = Enum.FontSize.Size18
  702. TextLabel.Text = "Hartford Valley"
  703. TextLabel.TextColor3 = Color3.new(0.333333, 1, 0.980392)
  704. TextLabel.TextSize = 24
  705.  
  706. local BillboardGui = Instance.new("BillboardGui")
  707. local Frame = Instance.new("Frame")
  708. local TextLabel = Instance.new("TextLabel")
  709.  
  710. BillboardGui.Parent = game.Workspace.Locations['Beaufort Cliffs']
  711. BillboardGui.Size = UDim2.new(0, 200, 0, 50)
  712. BillboardGui.StudsOffset = Vector3.new(0, 60, 0)
  713. BillboardGui.AlwaysOnTop = true
  714.  
  715. Frame.Parent = BillboardGui
  716. Frame.BackgroundColor3 = Color3.new(1, 1, 1)
  717. Frame.BackgroundTransparency = 1
  718. Frame.Size = UDim2.new(0, 150, 0, 50)
  719. Frame.Visible = false
  720.  
  721. TextLabel.Parent = Frame
  722. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  723. TextLabel.BackgroundTransparency = 1
  724. TextLabel.Size = UDim2.new(0, 150, 0, 50)
  725. TextLabel.SizeConstraint = Enum.SizeConstraint.RelativeXX
  726. TextLabel.Font = Enum.Font.Cartoon
  727. TextLabel.FontSize = Enum.FontSize.Size18
  728. TextLabel.Text = "Beaufort Cliffs"
  729. TextLabel.TextColor3 = Color3.new(0.333333, 1, 0.980392)
  730. TextLabel.TextSize = 24
  731.  
  732. local BillboardGui = Instance.new("BillboardGui")
  733. local Frame = Instance.new("Frame")
  734. local TextLabel = Instance.new("TextLabel")
  735.  
  736. BillboardGui.Parent = game.Workspace.Locations.Peninsula
  737. BillboardGui.Size = UDim2.new(0, 200, 0, 50)
  738. BillboardGui.StudsOffset = Vector3.new(0, 60, 0)
  739. BillboardGui.AlwaysOnTop = true
  740.  
  741. Frame.Parent = BillboardGui
  742. Frame.BackgroundColor3 = Color3.new(1, 1, 1)
  743. Frame.BackgroundTransparency = 1
  744. Frame.Size = UDim2.new(0, 150, 0, 50)
  745. Frame.Visible = false
  746.  
  747. TextLabel.Parent = Frame
  748. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  749. TextLabel.BackgroundTransparency = 1
  750. TextLabel.Size = UDim2.new(0, 150, 0, 50)
  751. TextLabel.SizeConstraint = Enum.SizeConstraint.RelativeXX
  752. TextLabel.Font = Enum.Font.Cartoon
  753. TextLabel.FontSize = Enum.FontSize.Size18
  754. TextLabel.Text = "Peninsula"
  755. TextLabel.TextColor3 = Color3.new(0.333333, 1, 0.980392)
  756. TextLabel.TextSize = 24
  757.  
  758. local BillboardGui = Instance.new("BillboardGui")
  759. local Frame = Instance.new("Frame")
  760. local TextLabel = Instance.new("TextLabel")
  761.  
  762. BillboardGui.Parent = game.Workspace.Locations.Observatory
  763. BillboardGui.Size = UDim2.new(0, 200, 0, 50)
  764. BillboardGui.StudsOffset = Vector3.new(0, 60, 0)
  765. BillboardGui.AlwaysOnTop = true
  766.  
  767. Frame.Parent = BillboardGui
  768. Frame.BackgroundColor3 = Color3.new(1, 1, 1)
  769. Frame.BackgroundTransparency = 1
  770. Frame.Size = UDim2.new(0, 150, 0, 50)
  771. Frame.Visible = false
  772.  
  773. TextLabel.Parent = Frame
  774. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  775. TextLabel.BackgroundTransparency = 1
  776. TextLabel.Size = UDim2.new(0, 150, 0, 50)
  777. TextLabel.SizeConstraint = Enum.SizeConstraint.RelativeXX
  778. TextLabel.Font = Enum.Font.Cartoon
  779. TextLabel.FontSize = Enum.FontSize.Size18
  780. TextLabel.Text = "Observatory"
  781. TextLabel.TextColor3 = Color3.new(0.333333, 1, 0.980392)
  782. TextLabel.TextSize = 24
  783.  
  784. local BillboardGui = Instance.new("BillboardGui")
  785. local Frame = Instance.new("Frame")
  786. local TextLabel = Instance.new("TextLabel")
  787.  
  788. BillboardGui.Parent = game.Workspace.Locations.Heli
  789. BillboardGui.Size = UDim2.new(0, 200, 0, 50)
  790. BillboardGui.StudsOffset = Vector3.new(0, 60, 0)
  791. BillboardGui.AlwaysOnTop = true
  792.  
  793. Frame.Parent = BillboardGui
  794. Frame.BackgroundColor3 = Color3.new(1, 1, 1)
  795. Frame.BackgroundTransparency = 1
  796. Frame.Size = UDim2.new(0, 150, 0, 50)
  797. Frame.Visible = false
  798.  
  799. TextLabel.Parent = Frame
  800. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  801. TextLabel.BackgroundTransparency = 1
  802. TextLabel.Size = UDim2.new(0, 150, 0, 50)
  803. TextLabel.SizeConstraint = Enum.SizeConstraint.RelativeXX
  804. TextLabel.Font = Enum.Font.Cartoon
  805. TextLabel.FontSize = Enum.FontSize.Size18
  806. TextLabel.Text = "Heli"
  807. TextLabel.TextColor3 = Color3.new(0.333333, 1, 0.980392)
  808. TextLabel.TextSize = 24
  809.  
  810. local BillboardGui = Instance.new("BillboardGui")
  811. local Frame = Instance.new("Frame")
  812. local TextLabel = Instance.new("TextLabel")
  813.  
  814. BillboardGui.Parent = game.Workspace.Locations.Lighthouse
  815. BillboardGui.Size = UDim2.new(0, 200, 0, 50)
  816. BillboardGui.StudsOffset = Vector3.new(0, 60, 0)
  817. BillboardGui.AlwaysOnTop = true
  818.  
  819. Frame.Parent = BillboardGui
  820. Frame.BackgroundColor3 = Color3.new(1, 1, 1)
  821. Frame.BackgroundTransparency = 1
  822. Frame.Size = UDim2.new(0, 150, 0, 50)
  823. Frame.Visible = false
  824.  
  825. TextLabel.Parent = Frame
  826. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  827. TextLabel.BackgroundTransparency = 1
  828. TextLabel.Size = UDim2.new(0, 150, 0, 50)
  829. TextLabel.SizeConstraint = Enum.SizeConstraint.RelativeXX
  830. TextLabel.Font = Enum.Font.Cartoon
  831. TextLabel.FontSize = Enum.FontSize.Size18
  832. TextLabel.Text = "Lighthouse"
  833. TextLabel.TextColor3 = Color3.new(0.333333, 1, 0.980392)
  834. TextLabel.TextSize = 24
Advertisement
Comments
Add Comment
Please, Sign In to add comment
Advertisement