Advertisement
Guest User

Fishing Simulator GUI

a guest
Mar 17th, 2020
5,581
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 5.76 KB | None | 0 0
  1. local player = game.Players.LocalPlayer
  2. local library = loadstring(game:HttpGet("https://pastebin.com/raw/JsdM2jiP",true))()
  3. library.options.underlinecolor = "rainbow"
  4.  
  5. --\\ Teleport Tab //--
  6.  
  7. local Teleport = library:CreateWindow("Teleportation")
  8.  
  9. --// Teleport.DeleteBorder \\--
  10.  
  11. local DeleteBorder = Teleport:Button("Delete Border", function()
  12.  
  13.     game.Workspace.IgnoredByMouse.LockedAreas:Destroy()
  14.  
  15. end)
  16.  
  17. --// Teleport.DeleteGoo \\--
  18.  
  19. local DeleteGoo = Teleport:Button("Delete Goo", function()
  20.  
  21.     game.Workspace:FindFirstChild("Ancient Shores").Goo:Destroy()
  22.  
  23. end)
  24.  
  25. --// Teleport Section 1 \\--
  26.  
  27. Teleport:Section("- Islands -")
  28.  
  29. --// Teleport.Section1.PortJackson \\--
  30.  
  31. local PortJackson = Teleport:Button("Port Jackson", function()
  32.  
  33.     game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-65, 50, -138)
  34.  
  35. end)
  36.  
  37. --// Teleport.Section1.EruptionIslad \\--
  38.  
  39. local EruptionIsland = Teleport:Button("Eruption Island", function()
  40.  
  41.     game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(3185, 48, 1252)
  42.  
  43. end)
  44.  
  45. --// Teleport.Section1.ShadowIsles \\--
  46.  
  47. local ShadowIsles = Teleport:Button("Shadow Isles", function()
  48.  
  49.     game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(2194, 42, -2221)
  50.  
  51. end)
  52.  
  53. --// Teleport.Section1.AncientShores\\--
  54.  
  55. local AncientShores = Teleport:Button("Ancient Shores", function()
  56.  
  57.     game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-2381, 44, -1701)
  58.  
  59. end)
  60.  
  61. --// Teleport Section 2 \\--
  62.  
  63. Teleport:Section("- Fishing Areas -")
  64.  
  65. --// Teleport.Section2.LavaFish \\--
  66.  
  67. local LavaFish = Teleport:Button("Lava Fish", function()
  68.  
  69.     game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(3096, 311, 1743)
  70.  
  71. end)
  72.  
  73. --// Teleport.Section2.IslesCaveFish \\--
  74.  
  75. local IslesCaveFish = Teleport:Button ("Isles Cave Fish", function()
  76.  
  77.     game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(2156, 39, -2246)
  78.  
  79. end)
  80.  
  81. --// Teleport.Section2.AncientRiverFish \\--
  82.  
  83. local AncientRiverFish = Teleport:Button("Ancient River Fish", function()
  84.  
  85.     game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-2805, 46, -1952)
  86.  
  87. end)
  88.  
  89. --// Teleport Section3 \\--
  90.  
  91. Teleport:Section("- Areas -")
  92.  
  93. --// Teleport.Section3.LavaObbyEnd
  94.  
  95. local LavaObbyEnd = Teleport:Button("Lava Obby End", function()
  96.  
  97.     game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame=CFrame.new(48129, 2183, 13688)
  98.  
  99. end)
  100.  
  101. --\\ Utility Tab //--
  102.  
  103. local Utility = library:CreateWindow("Utility")
  104.  
  105. --// Utility.Section 1 \\-
  106.  
  107. Utility:Section("- Toggle Incognito -")
  108.  
  109. --// Utility.Section1.Incognito \\--
  110.  
  111. local Incognito = Utility:Button("Incognito", function()
  112.  
  113.     game.CoreGui.RobloxGui.TopBarContainer.NameHealthContainer.Username.Text = "N/A"
  114.     game.Players.LocalPlayer.Character.Head.NameTag.NameLabel.Text = "N/A"
  115.     game.CoreGui.RobloxGui.PlayerListMaster.OffsetFrame.PlayerScrollList.ScrollingFrameContainer.ScrollingFrameClippingFrame.ScollingFrame.OffsetUndoFrame.Visible = false
  116.     game.CoreGui.RobloxGui.SettingsShield.SettingsShield.MenuContainer.PageViewClipper.PageView.PageViewInnerFrame.Players.Visible = false
  117.  
  118. end)
  119.  
  120. --// Utility.Section1.Un-Incognito \\--
  121.  
  122. local UnIncognito = Utility:Button("Un-Incognito", function()
  123.  
  124.     game.Players.LocalPlayer.Character.Head.NameTag.NameLabel.Text = game.Players.LocalPlayer.Name
  125.     game.CoreGui.RobloxGui.TopBarContainer.NameHealthContainer.Username.Text = game.Players.LocalPlayer.Name
  126.     game.CoreGui.RobloxGui.PlayerListMaster.OffsetFrame.PlayerScrollList.ScrollingFrameContainer.ScrollingFrameClippingFrame.ScollingFrame.OffsetUndoFrame.Visible = true
  127.     game.CoreGui.RobloxGui.SettingsShield.SettingsShield.MenuContainer.PageViewClipper.PageView.PageViewInnerFrame.Players.Visible = true  
  128.  
  129. end)
  130.  
  131. --// Utility.Section 2 \\--
  132.  
  133. Utility:Section("- Others -")
  134.  
  135. --// Utility.Section2.UnlockGamepasses \\--
  136.  
  137. local UnlockGamepasses = Utility:Button("Unlock Gamepasses", function()
  138.  
  139.     game.Players.LocalPlayer.LocalData.Gamepasses:FindFirstChild("2x Gold").Value=true
  140.     game.Players.LocalPlayer.LocalData.Gamepasses:FindFirstChild("Double Chance").Value=true
  141.     game.Players.LocalPlayer.LocalData.Gamepasses:FindFirstChild("Double Sprint").Value=true
  142.     game.Players.LocalPlayer.LocalData.Gamepasses:FindFirstChild("Better Luck").Value=true
  143.     game.Players.LocalPlayer.LocalData.Gamepasses:FindFirstChild("2x XP").Value=true
  144.     game.Players.LocalPlayer.LocalData.Gamepasses:FindFirstChild("Radio").Value=true
  145.  
  146. end)
  147.  
  148. --// Utility.Section2.WalkSpeed \\--
  149.  
  150. local WalkSpeed = Utility:Toggle("Super WalkSpeed", {flag = "WST"})
  151.  
  152. spawn(function()
  153.  
  154.     while wait(0.1) do
  155.         if Utility.flags.WST == true then
  156.             game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 100
  157.         else
  158.             game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 16
  159.         end
  160.     end
  161.  
  162. end)
  163.  
  164. --// Utility.Section2.JumpPower \\--
  165.  
  166. local JumpPower = Utility:Toggle("Super JumpPower", {flag = "JPT"})
  167.  
  168. spawn(function()
  169.  
  170.     while wait(0.1) do
  171.         if Utility.flags.JPT == true then
  172.             game.Players.LocalPlayer.Character.Humanoid.JumpPower = 200
  173.         else
  174.             game.Players.LocalPlayer.Character.Humanoid.JumpPower = 50
  175.         end
  176.     end
  177.  
  178. end)
  179.  
  180. --// Toggle GUI Key \\--
  181.  
  182. Utility:Bind("Toggle GUI Key",
  183. {flag = "Toggle", owo = true},
  184. function()
  185.     library.toggled = not library.toggled;
  186.         for i, data in next, library.queue do
  187.         local pos = (library.toggled and data.p or UDim2.new(-1, 0, -0.5,0))
  188.         data.w:TweenPosition(pos, (library.toggled and 'Out' or 'In'), 'Quad', 0.15, true)
  189.         wait();
  190.     end
  191. end)
  192.  
  193. --/ Destroy GUI \--
  194.  
  195. local Kill = Utility:Button("Destroy GUI", function()
  196.  
  197.     game:GetService("CoreGui").ScreenGui:Destroy()
  198.  
  199. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement