Advertisement
iJ0CInsb8CDPXyPbrTlW

Saber Simulator GUI [Program]

Dec 14th, 2019
411
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 21.26 KB | None | 0 0
  1. local CurrentVersion = "1.8"
  2.  
  3. if workspace.Flags:FindFirstChild("Flag") then
  4.     _G.IsVIP = false
  5. else
  6.     _G.IsVIP = true
  7.     game.Players.LocalPlayer.PlayerGui.Gui.Home.MSG.Text = "VIP Server Detected!"
  8. end
  9.  
  10. game.Players.LocalPlayer.PlayerGui.Gui.Home.DailyRewardInfo.Text = "Waiting Character..."
  11.  
  12. while not workspace:FindFirstChild(game.Players.LocalPlayer.Name) do
  13.     wait()
  14. end
  15. if game.Players.LocalPlayer.Character.Head.RankingGui:FindFirstChild("PName") then
  16.     game.Players.LocalPlayer.Character.Head.RankingGui.PName:Remove()
  17. end
  18. if game.Players.LocalPlayer.Character.Head.RankingGui:FindFirstChild("Tag1") then
  19.     game.Players.LocalPlayer.Character.Head.RankingGui.Tag1:Remove()
  20. end
  21. if game.Players.LocalPlayer.Character.Head.RankingGui:FindFirstChild("Tag2") then
  22.     game.Players.LocalPlayer.Character.Head.RankingGui.Tag2:Remove()
  23. end
  24.  
  25. game.Players.LocalPlayer.PlayerGui.Gui.Home.DailyRewardInfo.Text = "Loading GUI..."
  26. game.Players.LocalPlayer.PlayerGui.Gui.Home.DailyRewardInfo.Visible = true
  27.  
  28. function ShowMSG1(msg, duration)
  29.     game.Players.LocalPlayer.PlayerGui.Gui.Home.DailyRewardInfo.Text = msg
  30.     game.Players.LocalPlayer.PlayerGui.Gui.Home.DailyRewardInfo.Visible = true
  31.     wait(duration)
  32.     game.Players.LocalPlayer.PlayerGui.Gui.Home.DailyRewardInfo.Text = ""
  33.     game.Players.LocalPlayer.PlayerGui.Gui.Home.DailyRewardInfo.Visible = false
  34. end
  35.  
  36. function ShowMSG2(msg, duration)
  37.     game.Players.LocalPlayer.PlayerGui.Gui.Home.MSG.Text = msg
  38.     wait(duration)
  39.     game.Players.LocalPlayer.PlayerGui.Gui.Home.MSG.Text = ""
  40. end
  41.  
  42. function ShowMSG3(msg, duration)
  43.     game.Players.LocalPlayer.PlayerGui.Gui.Home.JumpMsg.Text = msg
  44.     game.Players.LocalPlayer.PlayerGui.Gui.Home.JumpMsg.Visible = true
  45.     wait(duration)
  46.     game.Players.LocalPlayer.PlayerGui.Gui.Home.JumpMsg.Text = ""
  47.     game.Players.LocalPlayer.PlayerGui.Gui.Home.JumpMsg.Visible = false
  48. end
  49.  
  50. function TP(X, Y, Z)
  51.     while not game.Players.LocalPlayer.Character:FindFirstChild("HumanoidRootPart") do
  52.         wait()
  53.     end
  54.     game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(X, Y, Z)
  55. end
  56.  
  57. function TP2(X, Y, Z)
  58.     local CurrentX = game.Players.LocalPlayer.Character.HumanoidRootPart.Position.X
  59.     local CurrentY = game.Players.LocalPlayer.Character.HumanoidRootPart.Position.Y
  60.     local CurrentZ = game.Players.LocalPlayer.Character.HumanoidRootPart.Position.Z
  61.     TP(X, Y, Z)
  62.     wait(0.1)
  63.     TP(CurrentX, CurrentY, CurrentZ)
  64. end
  65.  
  66. function TP3(X, Y, Z)
  67.     local CurrentX = game.Players.LocalPlayer.Character.HumanoidRootPart.Position.X
  68.     local CurrentY = game.Players.LocalPlayer.Character.HumanoidRootPart.Position.Y
  69.     local CurrentZ = game.Players.LocalPlayer.Character.HumanoidRootPart.Position.Z
  70.     TP(X, Y, Z)
  71.     wait(0.5)
  72.     TP(CurrentX, CurrentY, CurrentZ)
  73. end
  74.  
  75. function SilentTP(X, Y, Z, Delay)
  76.     game.Players.LocalPlayer.Character.Archivable = true
  77.     local Clone = game.Players.LocalPlayer.Character:Clone()
  78.     Clone.Name = "CharClone"
  79.     Clone.Parent = workspace
  80.     local CamCFrame = workspace.Camera.CFrame
  81.     local CurrentPosition = game.Players.LocalPlayer.Character.HumanoidRootPart.Position
  82.     game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(X, Y, Z)
  83.     workspace.Camera.CameraType = Enum.CameraType.Scriptable
  84.     wait(Delay)
  85.     game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(CurrentPosition.X, CurrentPosition.Y, CurrentPosition.Z)
  86.     workspace:FindFirstChild("CharClone"):Remove()
  87.     workspace.Camera.CameraType = Enum.CameraType.Custom
  88.     workspace.Camera.CFrame = CamCFrame
  89. end
  90.  
  91. function HatchEgg(v)
  92.     game:GetService("ReplicatedStorage").Events.HatchEggs:InvokeServer(game:GetService("ReplicatedStorage").Eggs[v], 3)
  93.     game:GetService("ReplicatedStorage").Events.HatchEggs:InvokeServer(game:GetService("ReplicatedStorage").Eggs[v], 1)
  94. end
  95.  
  96. function EquipTool()
  97.     if game.Players.LocalPlayer.Backpack:FindFirstChildOfClass("Tool") then
  98.         game.Players.LocalPlayer.Character.Humanoid:EquipTool(game.Players.LocalPlayer.Backpack:FindFirstChildOfClass("Tool"))
  99.     end
  100. end
  101.  
  102. game.Players.LocalPlayer:GetMouse().KeyDown:connect(function(Key)
  103.     if Key == "/" and game:GetService("UserInputService"):IsKeyDown(Enum.KeyCode.RightShift) then
  104.         for i, v in pairs(game.CoreGui.UILibrary:GetChildren()) do
  105.             v.Visible = not v.Visible
  106.         end
  107.     end
  108. end)
  109.  
  110. local library = loadstring(game:HttpGet("https://pastebin.com/raw/7Z6TzFnv", true))()
  111. local Auto = library:CreateWindow({text = "Auto"})
  112. local AutoPet = library:CreateWindow({text = "Auto Pet"})
  113. local AutoHatch = library:CreateWindow({text = "Auto Hatch [AUTO UPD]"})
  114. local Teleport = library:CreateWindow({text = "Teleport"})
  115. local Flags = library:CreateWindow({text = "Flags"})
  116. local Stuff = library:CreateWindow({text = "Stuff"})
  117. local Credits = library:CreateWindow({text = "Credits"})
  118. Credits:AddLabel("Credits\nWally - UI\nDollar3795#8891 - Code\nDichill#7174 - Help (Stuff)\nNaryxian#0001 - Help (Stuff)\nxMitchz#2416 - Help (Idea)\nProject Cavera#2696 - Beta Tester\nPing = Pong#8634 - Helper (Stuff)\nMisterLuuk#9536 - Helper (Stuff)\nGUI Users - <3")
  119.  
  120. Auto:AddToggle("Auto Farm", function(state)
  121.     if state then
  122.         _G.AutoFarm = true
  123.         while _G.AutoFarm do
  124.             EquipTool()
  125.             game:GetService("ReplicatedStorage").Events.Clicked:FireServer()
  126.             wait()
  127.         end
  128.     else
  129.         _G.AutoFarm = false
  130.     end
  131. end)
  132.  
  133. Auto:AddToggle("Auto Swing", function(state)
  134.     if state then
  135.         _G.AutoSwing = true
  136.         while _G.AutoSwing do
  137.             if game.Players.LocalPlayer.Character:FindFirstChildOfClass("Tool") then
  138.                 game.Players.LocalPlayer.Character:FindFirstChildOfClass("Tool").RemoteClick:FireServer()
  139.             else
  140.                 EquipTool()
  141.             end
  142.             wait()
  143.         end
  144.     else
  145.         _G.AutoSwing = false
  146.     end
  147. end)
  148.  
  149. Auto:AddToggle("Auto Collect [Coin]", function(state)
  150.     if state then
  151.         _G.AutoCollectCoin = true
  152.         while _G.AutoCollectCoin do
  153.             if _G.FastCollect then
  154.                 if game:GetService("Players").LocalPlayer.Character:FindFirstChild("AntiPort") then
  155.                     game:GetService("Players").LocalPlayer.Character:FindFirstChild("AntiPort"):Remove()
  156.                 end
  157.                 if game:GetService("Players").LocalPlayer.Character:FindFirstChild("AntiPortNew") then
  158.                     game:GetService("Players").LocalPlayer.Character:FindFirstChild("AntiPortNew"):Remove()
  159.                 end
  160.  
  161.                 for i, v in pairs(workspace.CoinsHolder:GetChildren()) do
  162.                     if v.Name == "Coin" then
  163.                         if not _G.AutoCollectCoin then
  164.                             return
  165.                         end
  166.                         game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.CFrame
  167.                         game:GetService("ReplicatedStorage").Events.UpdateData:InvokeServer()
  168.                     end
  169.                 end
  170.                 wait()
  171.             else
  172.                 local CoinPosition = game:GetService("Workspace").CoinsHolder.Coin.Position
  173.                 SilentTP(CoinPosition.X, CoinPosition.Y, CoinPosition.Z, 1)
  174.                 wait(2)
  175.             end
  176.         end
  177.     else
  178.         _G.AutoCollectCoin = false
  179.     end
  180. end)
  181.  
  182. Auto:AddToggle("Auto Collect [Candy Cane]", function(state)
  183.     if state then
  184.         _G.AutoCollectCandyCane = true
  185.         while _G.AutoCollectCandyCane do
  186.             if _G.FastCollect then
  187.                 if game:GetService("Players").LocalPlayer.Character:FindFirstChild("AntiPort") then
  188.                     game:GetService("Players").LocalPlayer.Character:FindFirstChild("AntiPort"):Remove()
  189.                 end
  190.                 if game:GetService("Players").LocalPlayer.Character:FindFirstChild("AntiPortNew") then
  191.                     game:GetService("Players").LocalPlayer.Character:FindFirstChild("AntiPortNew"):Remove()
  192.                 end
  193.  
  194.                 for i, v in pairs(workspace.CandyHolder:GetChildren()) do
  195.                     if v.Name == "CandyCane" then
  196.                         if not _G.AutoCollectCandyCane then
  197.                             return
  198.                         end
  199.                         game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.CFrame
  200.                         game:GetService("ReplicatedStorage").Events.UpdateData:InvokeServer()
  201.                     end
  202.                 end
  203.                 wait()
  204.             else
  205.                 local CandyCanePosition = game:GetService("Workspace").CandyHolder.CandyCane.Position
  206.                 SilentTP(CandyCanePosition.X, CandyCanePosition.Y, CandyCanePosition.Z, 1)
  207.                 wait(2)
  208.             end
  209.         end
  210.     else
  211.         _G.AutoCollectCandyCane = false
  212.     end
  213. end)
  214.  
  215. Auto:AddToggle("Faster Collection Method", function(state)
  216.     if state then
  217.         _G.FastCollect = true
  218.     else
  219.         _G.FastCollect = false
  220.     end
  221. end)
  222.  
  223. Auto:AddToggle("Auto Sell", function(state)
  224.     if state then
  225.         _G.AutoSell = true
  226.         while _G.AutoSell do
  227.             if game.Players.LocalPlayer.PlayerGui:FindFirstChild("Gui") then
  228.                 Sand = game.Players.LocalPlayer.PlayerGui.Gui.Home.Sand.Amount.Text
  229.                 CurrentSand = Sand:split(" / ")[1]
  230.                 MaxSand = Sand:split(" / ")[2]
  231.                 if CurrentSand == MaxSand then
  232.                     TP3(532.80011, 183.835846, 151.486023)
  233.                     wait(0.4)
  234.                 end
  235.             end
  236.             wait(0.1)
  237.         end
  238.     else
  239.         _G.AutoSell = false
  240.     end
  241. end)
  242.  
  243. Auto:AddToggle("Auto Boss", function(state)
  244.     if state and _G.AutoFarm and _G.AutoSwing then
  245.         _G.AutoBoss = true
  246.         if game:GetService("Workspace"):FindFirstChild("Boss") then
  247.             local Boss = game:GetService("Workspace").Boss.HumanoidRootPart.Position
  248.             game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(Boss.X, 186.29756164551, Boss.Z)
  249.         else
  250.             ShowMSG2("Auto Boss - Boss isn't spawned!", 3)
  251.         end
  252.         while _G.AutoBoss do
  253.             if game:GetService("Workspace"):FindFirstChild("Boss") and not _G.BossAlive then
  254.                 local Boss = game:GetService("Workspace").Boss.HumanoidRootPart.Position
  255.                 game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(Boss.X, 186.29756164551, Boss.Z)
  256.                 _G.BossAlive = true
  257.             elseif game:GetService("Workspace"):FindFirstChild("Boss") and _G.BossAlive then
  258.                 local Boss = game:GetService("Workspace").Boss.HumanoidRootPart.Position
  259.                 if _G.IsVIP then
  260.                     game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(Boss.X, 186.29756164551, Boss.Z)
  261.                 else
  262.                     game.Players.LocalPlayer.Character.Humanoid:MoveTo(Vector3.new(Boss.X, 186.29756164551, Boss.Z))
  263.                 end
  264.             elseif not game:GetService("Workspace"):FindFirstChild("Boss") and _G.BossAlive then
  265.                 if _G.IsVIP then
  266.                     game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(511.50579833984, 184.78834533691, 50.392555236816)
  267.                 else
  268.                     game.Players.LocalPlayer.Character.Humanoid:MoveTo(Vector3.new(511.50579833984, 184.78834533691, 50.392555236816))
  269.                 end
  270.                 ShowMSG2("Auto Boss - Boss has died!", 3)
  271.                 _G.BossAlive = false
  272.             end
  273.             if _G.IsVIP then
  274.                 wait()
  275.             else
  276.                 wait(1)
  277.             end
  278.         end
  279.     elseif state == false then
  280.         _G.AutoBoss = false
  281.     else
  282.         ShowMSG2("Auto Boss - You should turn on Auto Farm and Auto Swing\nbefore using Auto Boss!", 3)
  283.         _G.AutoBoss = false
  284.     end
  285. end)
  286.  
  287. Auto:AddToggle("Auto Buy Saber", function(state)
  288.     if state then
  289.         _G.AutoSaber = true
  290.         while _G.AutoSaber do
  291.             game:GetService("ReplicatedStorage").Events.BuyAll:FireServer("Swords")
  292.             wait()
  293.         end
  294.     else
  295.         _G.AutoSaber = false
  296.     end
  297. end)
  298.  
  299. Auto:AddToggle("Auto Buy DNA", function(state)
  300.     if state then
  301.         _G.AutoDNA = true
  302.         while _G.AutoDNA do
  303.             game:GetService("ReplicatedStorage").Events.BuyAll:FireServer("Backpacks")
  304.             wait()
  305.         end
  306.     else
  307.         _G.AutoDNA = false
  308.     end
  309. end)
  310.  
  311. Auto:AddToggle("Auto Buy Jump", function(state)
  312.     if state then
  313.         _G.AutoJump = true
  314.         while _G.AutoJump do
  315.             game:GetService("ReplicatedStorage").Events.BuyAll:FireServer("JumpBoosts")
  316.             wait()
  317.         end
  318.     else
  319.         _G.AutoJump = false
  320.     end
  321. end)
  322.  
  323. Auto:AddToggle("Auto Buy Boss Hit", function(state)
  324.     if state then
  325.         _G.AutoHit = true
  326.         while _G.AutoHit do
  327.             game:GetService("ReplicatedStorage").Events.BuyAll:FireServer("BossBoosts")
  328.             wait(0.1)
  329.         end
  330.     else
  331.         _G.AutoHit = false
  332.     end
  333. end)
  334.  
  335. Auto:AddToggle("Auto Buy Aura", function(state)
  336.     if state then
  337.         _G.AutoAura = true
  338.         while _G.AutoAura do
  339.             game:GetService("ReplicatedStorage").Events.BuyAll:FireServer("Auras")
  340.             wait(0.1)
  341.         end
  342.     else
  343.         _G.AutoAura = false
  344.     end
  345. end)
  346.  
  347. Auto:AddToggle("Auto Buy Class [BETA]", function(state)
  348.     if state then
  349.         _G.AutoClass = true
  350.         while _G.AutoClass do
  351.             for i, v in pairs(game:GetService("ReplicatedStorage").ShopItems.Classes:GetChildren()) do
  352.                 game:GetService("ReplicatedStorage").Events.BuyItem:FireServer(v.Name)
  353.                 wait()
  354.             end
  355.             wait(0.1)
  356.         end
  357.     else
  358.         _G.AutoClass = false
  359.     end
  360. end)
  361.  
  362. Auto:AddToggle("Auto Kill Players [BETA]", function(state)
  363.     if state then
  364.         _G.AutoKill = true
  365.         while _G.AutoKill do
  366.             for i, v in pairs(game.Players:GetPlayers()) do
  367.                 if v ~= game.Players.LocalPlayer then
  368.                     if workspace:FindFirstChild(v.Name) then
  369.                         if not v.Character.Head.RankingGui.Safe.Visible then
  370.                             if game.Players.LocalPlayer.leaderstats.Strength > v.leaderstats.Strength then
  371.                                 while v.Character.Humanoid.Health ~= 0 do
  372.                                     if not _G.AutoKill then
  373.                                         return
  374.                                     end
  375.                                     if game.Players.LocalPlayer.Character:FindFirstChild("HumanoidRootPart") and not v.Character.Head.RankingGui.Safe.Visible then
  376.                                         game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.Character.HumanoidRootPart.CFrame * CFrame.new(0, 0, 7)
  377.                                     end
  378.                                     wait()
  379.                                 end
  380.                             end
  381.                         end
  382.                     end
  383.                 end
  384.             end
  385.             wait()
  386.         end
  387.     else
  388.         _G.AutoKill = false
  389.     end
  390. end)
  391.  
  392. AutoPet:AddToggle("Auto Craft", function(state)
  393.     if state then
  394.         _G.AutoCraft = true
  395.         while _G.AutoCraft do
  396.             game:GetService("ReplicatedStorage").Events.CombineAll:FireServer()
  397.             wait(10)
  398.         end
  399.     else
  400.         _G.AutoCraft = false
  401.     end
  402. end)
  403.  
  404. for i = 1, 6 do
  405.     if i == 1 then
  406.         Color = "Gray"
  407.     elseif i == 2 then
  408.         Color = "Green"
  409.     elseif i == 3 then
  410.         Color = "Blue"
  411.     elseif i == 4 then
  412.         Color = "Purple"
  413.     elseif i == 5 then
  414.         Color = "Orange"
  415.     elseif i == 6 then
  416.         Color = "Moon"
  417.     end
  418.     AutoPet:AddToggle("Auto Delete [" .. Color .. "]", function(state)
  419.         if state then
  420.             _G["AutoDelete" .. i] = true
  421.             while _G["AutoDelete" .. i] do
  422.                 if game:GetService("Players").LocalPlayer.PlayerGui:FindFirstChild("Gui") then
  423.                     local PetTable = {}
  424.                     for n, v in pairs(game:GetService("Players").LocalPlayer.PlayerGui.Gui.Submenus.PetsInventory.PetsFrame.Frame:GetChildren()) do
  425.                         if v.Name ~= "UIGridLayout" then
  426.                             if _G.AutoDeleteIgnoreGolden and v.Golden.Visible then
  427.                             elseif _G.AutoDeleteIgnoreShiny and v.Shiny.Visible then
  428.                             elseif _G.AutoDeleteIgnoreRainbow and v.Rainbow.Visible then
  429.                             else
  430.                                 for _, x in pairs(game:GetService("ReplicatedStorage").Pets:GetChildren()) do
  431.                                     if v:FindFirstChild("IMG") then
  432.                                         if x.Name == v.IMG:GetChildren()[1].Name then
  433.                                             if x.Rarity.Value == i then
  434.                                                 table.insert(PetTable, v.Name)
  435.                                             end
  436.                                         end
  437.                                     end
  438.                                 end
  439.                             end
  440.                         end
  441.                         wait()
  442.                     end
  443.                     game:GetService("ReplicatedStorage").Events.PetCommand:FireServer(PetTable, "DeleteMulti")
  444.                 end
  445.                 wait()
  446.             end
  447.         else
  448.             _G["AutoDelete" .. i] = false
  449.         end
  450.     end)
  451. end
  452.  
  453. AutoPet:AddToggle("Ignore Golden", function(state)
  454.     if state then
  455.         _G.AutoDeleteIgnoreGolden = true
  456.     else
  457.         _G.AutoDeleteIgnoreGolden = false
  458.     end
  459. end)
  460.  
  461. AutoPet:AddToggle("Ignore Shiny", function(state)
  462.     if state then
  463.         _G.AutoDeleteIgnoreShiny = true
  464.     else
  465.         _G.AutoDeleteIgnoreShiny = false
  466.     end
  467. end)
  468.  
  469. AutoPet:AddToggle("Ignore Rainbow", function(state)
  470.     if state then
  471.         _G.AutoDeleteIgnoreRainbow = true
  472.     else
  473.         _G.AutoDeleteIgnoreRainbow = false
  474.     end
  475. end)
  476.  
  477. for i, v in pairs(game:GetService("ReplicatedStorage").Eggs:GetChildren()) do
  478.     if v.Name ~= "Thanksgiving Egg" then
  479.         for _, x in pairs(game:GetService("Workspace"):GetChildren()) do
  480.             if x:FindFirstChild("SignPart") then
  481.                 if x.SignPart.EggName.Value == v.Name then
  482.                     AutoHatch:AddToggle(v.Name .. " [" .. x.SignPart.EggsSurfaceGui.Frame.Amount.Text .. " " .. v.Currency.Value .. "]", function(state)
  483.                         if state then
  484.                             _G["AutoHatch" .. v.Name:gsub(" ", "")] = true
  485.                             while _G["AutoHatch" .. v.Name:gsub(" ", "")] do
  486.                                 HatchEgg(v.Name)
  487.                                 wait()
  488.                             end
  489.                         else
  490.                             _G["AutoHatch" .. v.Name:gsub(" ", "")] = false
  491.                         end
  492.                     end)
  493.                 end
  494.             end
  495.         end
  496.     end
  497. end
  498.  
  499. Teleport:AddButton("Hill", function()
  500.     TP(791.358, 252.105, 32.121)
  501. end)
  502.  
  503. Teleport:AddButton("Sell", function()
  504.     TP3(532.80011, 183.835846, 151.486023)
  505. end)
  506.  
  507. Teleport:AddButton("Egg", function()
  508.     TP(623, 184.209091, 52)
  509. end)
  510.  
  511. Teleport:AddButton("Egg Of Life", function()
  512.     TP(513.059, 797.52136230469, 171.205)
  513. end)
  514.  
  515. Teleport:AddButton("Glory Egg", function()
  516.     TP(484.251, 2651.1938476563, -304.177)
  517. end)
  518.  
  519. Teleport:AddButton("Dominus Egg", function()
  520.     TP(658.16, 7090.1552734375, -295.134)
  521. end)
  522.  
  523. Teleport:AddButton("Silver Egg", function()
  524.     TP(576.047, 12696.16015625, -233.788)
  525. end)
  526.  
  527. Teleport:AddButton("Golden Egg", function()
  528.     TP(511.604, 19437.19921875, -71.579)
  529. end)
  530.  
  531. Teleport:AddButton("Premium Egg", function()
  532.     TP(476.739, 26254.69921875, -188.6)
  533. end)
  534.  
  535. Teleport:AddButton("Class Egg", function()
  536.     TP(630.541, 29798.35546875, -76.334)
  537. end)
  538.  
  539. Teleport:AddButton("Diamond Egg", function()
  540.     TP(518.662, 34167.1484375, -202.459)
  541. end)
  542.  
  543. Teleport:AddButton("Ruby Egg", function()
  544.     TP(576.41, 38092.25390625, -133.051)
  545. end)
  546.  
  547. Teleport:AddButton("Alpha Egg", function()
  548.     TP(576.41, 42886.25390625, -196.051)
  549. end)
  550.  
  551. Teleport:AddButton("Snow Egg", function()
  552.     TP(631.199, 48847.015625, -293.765)
  553. end)
  554.  
  555. Teleport:AddButton("Reaper Egg", function()
  556.     TP(539.671, 52641.015625, -163.945)
  557. end)
  558.  
  559. Teleport:AddButton("Ice Egg", function()
  560.     TP(539.671, 59654.015625, -163.945)
  561. end)
  562.  
  563. Teleport:AddButton("Nature Egg", function()
  564.     TP(539.671, 64564.02734375, -163.945)
  565. end)
  566.  
  567. Teleport:AddButton("Winter Egg", function()
  568.     TP(539.671, 69320.03125, -163.945)
  569. end)
  570.  
  571. Flags:AddToggle("Auto Flag", function(state)
  572.     if state then
  573.         _G.AutoFlag = true
  574.         while _G.AutoFlag do
  575.             local CurrentX = game.Players.LocalPlayer.Character.HumanoidRootPart.Position.X
  576.             local CurrentY = game.Players.LocalPlayer.Character.HumanoidRootPart.Position.Y
  577.             local CurrentZ = game.Players.LocalPlayer.Character.HumanoidRootPart.Position.Z
  578.             for i, v in pairs(workspace.Flags:GetChildren()) do
  579.                 game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = v.Base.CFrame
  580.                 if v.OwnerValue.Value ~= game:GetService("Players").LocalPlayer.Name then
  581.                     wait(15 + v.CapValue.Value)
  582.                 else
  583.                     wait(12 - v.CapValue.Value)
  584.                 end
  585.             end
  586.             TP(CurrentX, CurrentY, CurrentZ)
  587.             wait()
  588.         end
  589.     else
  590.         _G.AutoFlag = false
  591.     end
  592. end)
  593.  
  594. local FlagsDropDown;
  595. local Drops = {"Teleport To Flag"}
  596. for i, v in pairs(workspace.Flags:GetChildren()) do
  597.     table.insert(Drops, "Flag" .. tostring(i))
  598. end
  599. FlagsDropDown = Flags:AddDropdown(Drops, function(v)
  600.     if v == "Teleport To Flag" then
  601.         return
  602.     end
  603.     for x, y in pairs(workspace.Flags:GetChildren()) do
  604.         if tostring(x) == v:gsub("Flag", "") then
  605.             local BasePos = y.Base.Position
  606.             TP(BasePos.X, BasePos.Y, BasePos.Z)
  607.         end
  608.     end
  609. end)
  610.  
  611. Stuff:AddButton("Shop", function()
  612.     game.Players.LocalPlayer.PlayerGui.Gui.Submenus.Shop.Visible = true
  613.     game.Players.LocalPlayer.PlayerGui.Gui.Submenus.Shop.Position = UDim2.new(0.5, 0, 0.5, 0)
  614. end)
  615.  
  616. Stuff:AddButton("Crown Shop", function()
  617.     game.Players.LocalPlayer.PlayerGui.Gui.Submenus.CrownShop.Visible = true
  618.     game.Players.LocalPlayer.PlayerGui.Gui.Submenus.CrownShop.Position = UDim2.new(0.5, 0, 0.5, 0)
  619. end)
  620.  
  621. Stuff:AddButton("Skill Shop", function()
  622.     game.Players.LocalPlayer.PlayerGui.Gui.Submenus.SkillShop.Visible = true
  623.     game.Players.LocalPlayer.PlayerGui.Gui.Submenus.SkillShop.Position = UDim2.new(0.5, 0, 0.5, 0)
  624. end)
  625.  
  626. Stuff:AddBox("WalkSpeed", function(object, focus)
  627.     if focus then
  628.         _G.WalkSpeed = true
  629.         while _G.WalkSpeed do
  630.             game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = tonumber(object.Text) or 16
  631.             wait()
  632.         end
  633.     else
  634.         _G.WalkSpeed = false
  635.     end
  636. end)
  637.  
  638. Stuff:AddBox("JumpPower", function(object, focus)
  639.     if focus then
  640.         _G.JumpPower = true
  641.         while _G.JumpPower do
  642.             game.Players.LocalPlayer.Character.Humanoid.JumpPower = tonumber(object.Text) or 60
  643.             wait()
  644.         end
  645.     else
  646.         _G.JumpPower = false
  647.     end
  648. end)
  649.  
  650. Stuff:AddToggle("Shift to Sprint", function(state)
  651.     if state then
  652.         _G.Sprint = true
  653.         while _G.Sprint do
  654.             if game:GetService("UserInputService"):IsKeyDown(Enum.KeyCode.LeftShift) then
  655.                 game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 50
  656.             end
  657.             wait()
  658.         end
  659.     else
  660.         _G.Sprint = false
  661.     end
  662. end)
  663.  
  664. game.Players.LocalPlayer.PlayerGui.Gui.Home.DailyRewardInfo.Text = "Loading Version..."
  665. local Version = game:HttpGet("http://ver.sabersim.kro.kr")
  666. if Version ~= CurrentVersion then
  667.     game.Players.LocalPlayer.PlayerGui.Gui.Home.DailyRewardInfo.Text = "Script Outdated!"
  668.     game.Players.LocalPlayer.PlayerGui.Gui.Home.MSG.Text = "This script is outdated!\nPlease join the discord for updates! (Discord Server Link Copied!)"
  669.     setclipboard("https://discord.gg/eR2x9DE")
  670.     game.CoreGui.UILibrary:Remove()
  671. else
  672.     game.Players.LocalPlayer.PlayerGui.Gui.Home.DailyRewardInfo.Text = "Loading Server Message..."
  673.     local ServerMessage = game:HttpGet("http://msg.sabersim.kro.kr")
  674.  
  675.     game.Players.LocalPlayer.PlayerGui.Gui.Home.DailyRewardInfo.Text = "Saber Simulator GUI Loaded!"
  676.     game.Players.LocalPlayer.PlayerGui.Gui.Home.JumpMsg.Text = "Server Message: " .. ServerMessage
  677.     game.Players.LocalPlayer.PlayerGui.Gui.Home.JumpMsg.TextColor3 = Color3.new(0, 178, 255)
  678.     wait(3)
  679.     game.Players.LocalPlayer.PlayerGui.Gui.Home.MSG.Text = ""
  680.     game.Players.LocalPlayer.PlayerGui.Gui.Home.DailyRewardInfo.Text = "Saber Simulator GUI [KeyBind: RSHIFT]"
  681.     game.Players.LocalPlayer.PlayerGui.Gui.Home.DailyRewardInfo.TextColor3 = Color3.new(255, 255, 0)
  682.     wait(7)
  683.     game.Players.LocalPlayer.PlayerGui.Gui.Home.JumpMsg.Text = ""
  684. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement