tristanlol123

【🗻】Expedition Antarctica Script

Oct 3rd, 2021 (edited)
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 6.87 KB | None | 0 0
  1. local library = loadstring(game:HttpGet(('https://raw.githubusercontent.com/AikaV3rm/UiLib/master/Lib.lua')))()
  2.  
  3. local w = library:CreateWindow("Dohm Experience") -- Creates the window
  4.  
  5. local b = w:CreateFolder("Player") -- Creates the folder(U will put here your buttons,etc)
  6. local c = w:CreateFolder("Jobs") -- Creates the folder(U will put here your buttons,etc)
  7. local z = w:CreateFolder("Stats") -- Creates the folder(U will put here your buttons,etc)
  8. local g = w:CreateFolder("Money") -- Creates the folder(U will put here your buttons,etc)
  9. local l = w:CreateFolder("Teleport Options") -- Creates the folder(U will put here your buttons,etc)
  10. local h = w:CreateFolder("Exit GUI") -- Creates the folder(U will put here your buttons,etc)
  11.  
  12.  
  13. local hasVIP = false
  14. local touchMoon = false
  15.  
  16. local function vipGiver()
  17.     if hasVIP == true then
  18.      game:GetService("Players").LocalPlayer.Inventory.VIP.Value = true
  19.      print('[DohmBoyOG:] You gave yourself VIP :D')
  20. elseif hasVIP == false then
  21.     game:GetService("Players").LocalPlayer.Inventory.VIP.Value = false
  22.      print('[DohmBoyOG]: You took away your VIP, you madlad :(')
  23. end
  24. end
  25.  
  26. b:Toggle("Unlock VIP",function(bool)
  27.     shared.toggle = bool
  28.     hasVIP = bool
  29.     vipGiver()
  30. end)
  31.  
  32. local function moonGravity()
  33.     if touchMoon == true then
  34.         game.Workspace.Gravity = 20
  35.         print('[DohmBoyOG]: go Fourth and Reach the STARS! :D :D')
  36.     elseif touchMoon == false then
  37.         game.Workspace.Gravity = 196.2
  38.         print('[DohmBoyOG]: Welcome back to earth my friend, we missed you!')
  39. end
  40.     end
  41.  
  42. b:Toggle("Moon Gravity",function(bool)
  43.     shared.toggle = bool
  44.     touchMoon= bool
  45.     moonGravity()
  46. end)
  47.  
  48. c:Button("Search and Rescue",function()
  49.     game:GetService("ReplicatedStorage")['JobS&R']:FireServer()
  50. end)
  51.  
  52. c:Button("Guide",function()
  53.     game:GetService("ReplicatedStorage")['JobGuide']:FireServer()
  54. end)
  55.  
  56. c:Button("Explorer",function()
  57.     game:GetService("ReplicatedStorage")['JobExplorer']:FireServer()
  58. end)
  59.  
  60. z:Button("Refill Health",function()
  61.     game:GetService("ReplicatedStorage")['JobExplorer']:FireServer()
  62. end)
  63.  
  64. z:Button("Refill Hydration",function()
  65.     game:GetService("Players").LocalPlayer.Inventory.Hydration.Value = 100
  66. end)
  67.  
  68. z:Button("Refill Enegry",function()
  69.     game:GetService("Players").LocalPlayer.Inventory.Energy.Value = 999
  70. end)
  71.  
  72. g:Button("Give [Cash]",function()
  73.     game:GetService("ReplicatedStorage")['Coins_Award']:FireServer('10000')
  74. end)
  75.  
  76. local names = game.Players:GetPlayers()
  77. for i = 1, #names do names[i] = names[i].Name end
  78.  
  79. l:Button("Teleport to Players",function()
  80.     local j = library:CreateWindow("Magic Teleport") -- Creates the window
  81.     local f = j:CreateFolder("PickaPlayer") -- Creates the folder(U will put here your buttons,etc)
  82.     f:Dropdown("Dropdown",names,true,function(mob) --true/false, replaces the current title "Dropdown" with the option that t
  83.     local nm = mob
  84.     print('here')
  85.     local plr1 = game.Players.LocalPlayer.Character
  86.     local plr2 = game.Workspace:FindFirstChild(nm)
  87.     plr1.HumanoidRootPart.CFrame = plr2.HumanoidRootPart.CFrame * CFrame.new(0,2,0)
  88.     print('debug')
  89.     end)
  90. end)
  91.  
  92. l:Button("Teleport to Locations",function()
  93.     local d = library:CreateWindow("Points of Interest") -- Creates the window
  94.  
  95.     local l = d:CreateFolder("Camps") -- Creates the folder(U will put here your buttons,etc)
  96.     local q = d:CreateFolder("Peaks") -- Creates the folder(U will put here your buttons,etc)
  97.     local x = d:CreateFolder("Team Tents") -- Creates the folder(U will put here your buttons,etc
  98.     local r = d:CreateFolder("Luxury Tents") -- Creates the folder(U will put here your buttons,etc
  99.  
  100.     l:Button("Starting Camp",function()
  101.     local plr1 = game.Players.LocalPlayer.Character
  102.     plr1.HumanoidRootPart.CFrame = game.Workspace["Water_Refill_Basecamp"].CFrame * CFrame.new(2,0,20)
  103.     end)
  104.  
  105.     l:Button("Campsite One",function()
  106.     local plr1 = game.Players.LocalPlayer.Character
  107.     plr1.HumanoidRootPart.CFrame = game.Workspace["Water_Refill_Camp1"].CFrame * CFrame.new(20,0,20)
  108.     end)
  109.  
  110.     l:Button("Campsite Two",function()
  111.     local plr1 = game.Players.LocalPlayer.Character
  112.     plr1.HumanoidRootPart.CFrame = game.Workspace["Water_Refill_Camp2"].CFrame * CFrame.new(10,0,10)
  113.     end)
  114.  
  115.     l:Button("Campsite Three",function()
  116.     local plr1 = game.Players.LocalPlayer.Character
  117.     plr1.HumanoidRootPart.CFrame = game.Workspace["Water_Refill_Camp3"].CFrame * CFrame.new(10,0,10)
  118.     end)
  119.  
  120.     q:Button("The South Pole",function()
  121.     local plr1 = game.Players.LocalPlayer.Character
  122.     plr1.HumanoidRootPart.CFrame = game.Workspace["South Pole Globe"].CFrame * CFrame.new(10,0,10)
  123.     end)
  124.  
  125.     x:Button("Kaleum Expeditions",function()
  126.     local plr1 = game.Players.LocalPlayer.Character
  127.     plr1.HumanoidRootPart.CFrame = game.Workspace["Touch_Basecamp_OutfitKaleum"].CFrame * CFrame.new(5,2,20)
  128.     end)
  129.  
  130.     x:Button("United Expeditions",function()
  131.     local plr1 = game.Players.LocalPlayer.Character
  132.     plr1.HumanoidRootPart.CFrame = game.Workspace["Touch_Basecamp_BackpackUnited"].CFrame * CFrame.new(5,2,-10)
  133.     end)
  134.  
  135.     x:Button("Gopro Expeditions",function()
  136.     local plr1 = game.Players.LocalPlayer.Character
  137.     plr1.HumanoidRootPart.CFrame = game.Workspace["Touch_Basecamp_BackpackGopro"].CFrame * CFrame.new(-2,2,-5)
  138.     end)
  139.  
  140.     x:Button("World Expeditions",function()
  141.     local plr1 = game.Players.LocalPlayer.Character
  142.     plr1.HumanoidRootPart.CFrame = game.Workspace["Touch_Basecamp_BackpackWorldExpeditions"].CFrame * CFrame.new(-2,2,-5)
  143.     end)
  144.  
  145.     x:Button("Ghost Expeditions",function()
  146.     local plr1 = game.Players.LocalPlayer.Character
  147.     plr1.HumanoidRootPart.CFrame = game.Workspace["Touch_Basecamp_HelmetGhost"].CFrame * CFrame.new(-2,2,-5)  
  148.     end)
  149.  
  150.     x:Button("VOYD Expeditions",function()
  151.     local plr1 = game.Players.LocalPlayer.Character
  152.     plr1.HumanoidRootPart.CFrame = game.Workspace["Touch_Basecamp_HelmetVOYD"].CFrame * CFrame.new(2,2,-5)  
  153.     end)
  154.  
  155.     x:Button("Alpine Expeditions",function()
  156.     local plr1 = game.Players.LocalPlayer.Character
  157.     plr1.HumanoidRootPart.CFrame = game.Workspace["Touch_Basecamp_BackpackAlpine"].CFrame * CFrame.new(2,2,-5)  
  158.     end)
  159.  
  160.     r:Button("Luxury Tent 1",function()
  161.     local plr1 = game.Players.LocalPlayer.Character
  162.     plr1.HumanoidRootPart.CFrame = game.Workspace["Fireplace"].CFrame * CFrame.new(-5,5,-10)  
  163.     end)
  164.  
  165.      r:Button("Luxury Tent 2",function()
  166.     local plr1 = game.Players.LocalPlayer.Character
  167.     plr1.HumanoidRootPart.CFrame = game.Workspace["Single Bed"]["Simple Pillow"].CFrame * CFrame.new(-4,2,10)  
  168.     end)
  169. end)
  170.  
  171. h:DestroyGui()
  172. h:Label("DohmBoyOG#0313",{
  173.     TextSize = 15; -- Self Explaining
  174.     TextColor = Color3.fromRGB(255,74,0); -- Self Explaining
  175.     BgColor = Color3.fromRGB(69,69,69); -- Self Explaining
  176.  
  177. })
Add Comment
Please, Sign In to add comment