Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Gui to Lua
- -- Version: 3
- -- Instances:
- local ScreenGui = Instance.new("ScreenGui")
- local OpenFrame = Instance.new("Frame")
- local Open = Instance.new("TextButton")
- local Fishthing = Instance.new("Frame")
- local AutoFish = Instance.new("TextButton")
- local AutoSell = Instance.new("TextButton")
- local StopFishing = Instance.new("TextButton")
- local Gamepasses = Instance.new("TextButton")
- local FastBoat = Instance.new("TextButton")
- local Creature = Instance.new("TextButton")
- local TpBoat = Instance.new("TextButton")
- local TpBoat_2 = Instance.new("TextButton")
- local InstaCatch = Instance.new("TextButton")
- local random = Instance.new("TextLabel")
- local random2 = Instance.new("TextLabel")
- local ok = Instance.new("TextLabel")
- local idk = Instance.new("TextLabel")
- local Close = Instance.new("TextButton")
- --Properties:
- ScreenGui.Parent = game.CoreGui
- ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
- OpenFrame.Name = "OpenFrame"
- OpenFrame.Parent = ScreenGui
- OpenFrame.Active = true
- OpenFrame.BackgroundColor3 = Color3.new(0, 0, 0)
- OpenFrame.BackgroundTransparency = 0.69999998807907
- OpenFrame.Position = UDim2.new(-6.0216216e-08, 0, 0.939803421, 0)
- OpenFrame.Size = UDim2.new(0, 122, 0, 49)
- Open.Name = "Open"
- Open.Parent = OpenFrame
- Open.BackgroundColor3 = Color3.new(1, 1, 1)
- Open.BackgroundTransparency = 1
- Open.Size = UDim2.new(0, 122, 0, 49)
- Open.Font = Enum.Font.SourceSans
- Open.Text = "Hehe"
- Open.TextColor3 = Color3.new(1, 1, 1)
- Open.TextSize = 30
- Open.TextStrokeColor3 = Color3.new(1, 1, 1)
- Open.MouseButton1Down:connect(function()
- Fishthing.Visible = true
- OpenFrame.Visible = false
- end)
- Fishthing.Archivable = false
- Fishthing.Name = "Fishthing"
- Fishthing.Parent = ScreenGui
- Fishthing.Active = true
- Fishthing.BackgroundColor3 = Color3.new(0, 0, 0)
- Fishthing.BackgroundTransparency = 0.69999998807907
- Fishthing.Position = UDim2.new(0.14127861, 0, 0.213759214, 0)
- Fishthing.Size = UDim2.new(0, 681, 0, 361)
- Fishthing.Draggable = true
- AutoFish.Name = "AutoFish"
- AutoFish.Parent = Fishthing
- AutoFish.BackgroundColor3 = Color3.new(1, 1, 1)
- AutoFish.Position = UDim2.new(0.0200892854, 0, 0.0416666679, 0)
- AutoFish.Size = UDim2.new(0, 188, 0, 47)
- AutoFish.Font = Enum.Font.SourceSans
- AutoFish.Text = "Auto Fishing"
- AutoFish.TextColor3 = Color3.new(0, 0, 0)
- AutoFish.TextSize = 14
- AutoFish.MouseButton1Down:connect(function()
- -------------------------------------------
- _G.var = true
- -------------------------------------------
- local plrgui = game.Players.LocalPlayer.PlayerGui.ScreenGui
- local function str_split(str, sep)
- if sep == nil then
- sep = '%s'
- end
- local res = {}
- local func = function(w)
- table.insert(res, w)
- end
- string.gsub(str, '[^'..sep..']+', func)
- return res
- end
- while _G.var do
- game.ReplicatedStorage.Connections.FishingCast:InvokeServer(false,false)
- inventoryTable=str_split(plrgui.SideInventory.InventorySize.Text, "/")
- bait=string.gsub(plrgui.SideBait.Counter.Text, "BAIT: ", "")
- if bait == "0" then
- game.ReplicatedStorage.Connections.FishingPurchaseBait:InvokeServer()
- end
- if tonumber(inventoryTable[1]) == tonumber(inventoryTable[2]) then
- game.ReplicatedStorage.Connections.FishingSellAll:InvokeServer()
- end
- wait(1)
- end
- end)
- AutoSell.Name = "AutoSell"
- AutoSell.Parent = Fishthing
- AutoSell.BackgroundColor3 = Color3.new(1, 1, 1)
- AutoSell.Position = UDim2.new(0.333775818, 0, 0.0416666679, 0)
- AutoSell.Size = UDim2.new(0, 188, 0, 47)
- AutoSell.Font = Enum.Font.SourceSans
- AutoSell.Text = "Auto Sell"
- AutoSell.TextColor3 = Color3.new(0, 0, 0)
- AutoSell.TextSize = 14
- AutoSell.MouseButton1Down:connect(function()
- _G.autoSell = true
- while _G.autoSell and wait() do
- for _, v in pairs(game:GetService("Players").LocalPlayer["LocalData"]["FishDiscovered"]:GetChildren()) do
- local string_1 = tostring(v);
- local number_1 = 1;
- local Target = game:GetService("ReplicatedStorage").CloudClientResources.Communication.Functions.SellItem;
- Target:InvokeServer(string_1, number_1);
- end
- end
- end)
- StopFishing.Name = "StopFishing"
- StopFishing.Parent = Fishthing
- StopFishing.BackgroundColor3 = Color3.new(1, 1, 1)
- StopFishing.Position = UDim2.new(0.0200892836, 0, 0.242468834, 0)
- StopFishing.Size = UDim2.new(0, 188, 0, 47)
- StopFishing.Font = Enum.Font.SourceSans
- StopFishing.Text = "Stop AutoFishing"
- StopFishing.TextColor3 = Color3.new(0, 0, 0)
- StopFishing.TextSize = 14
- StopFishing.MouseButton1Down:connect(function()
- -------------------------------------------
- _G.var = false
- -------------------------------------------
- local plrgui = game.Players.LocalPlayer.PlayerGui.ScreenGui
- local function str_split(str, sep)
- if sep == nil then
- sep = '%s'
- end
- local res = {}
- local func = function(w)
- table.insert(res, w)
- end
- string.gsub(str, '[^'..sep..']+', func)
- return res
- end
- while _G.var do
- game.ReplicatedStorage.Connections.FishingCast:InvokeServer(false,false)
- inventoryTable=str_split(plrgui.SideInventory.InventorySize.Text, "/")
- bait=string.gsub(plrgui.SideBait.Counter.Text, "BAIT: ", "")
- if bait == "0" then
- game.ReplicatedStorage.Connections.FishingPurchaseBait:InvokeServer()
- end
- if tonumber(inventoryTable[1]) == tonumber(inventoryTable[2]) then
- game.ReplicatedStorage.Connections.FishingSellAll:InvokeServer()
- end
- wait(1)
- end
- end)
- Gamepasses.Name = "Gamepasses"
- Gamepasses.Parent = Fishthing
- Gamepasses.BackgroundColor3 = Color3.new(1, 1, 1)
- Gamepasses.Position = UDim2.new(0.333333343, 0, 0.240997225, 0)
- Gamepasses.Size = UDim2.new(0, 188, 0, 47)
- Gamepasses.Font = Enum.Font.SourceSans
- Gamepasses.Text = "Gamepasses"
- Gamepasses.TextColor3 = Color3.new(0, 0, 0)
- Gamepasses.TextSize = 14
- Gamepasses.MouseButton1Down:connect(function()
- for _, gamepass in pairs(game:GetService("Players").LocalPlayer["LocalData"]["Gamepasses"]:GetChildren()) do
- gamepass.Value = true
- end
- end)
- FastBoat.Name = "FastBoat"
- FastBoat.Parent = Fishthing
- FastBoat.BackgroundColor3 = Color3.new(1, 1, 1)
- FastBoat.Position = UDim2.new(0.637298107, 0, 0.0415512472, 0)
- FastBoat.Size = UDim2.new(0, 188, 0, 47)
- FastBoat.Font = Enum.Font.SourceSans
- FastBoat.Text = "Fast Boat"
- FastBoat.TextColor3 = Color3.new(0, 0, 0)
- FastBoat.TextSize = 14
- FastBoat.MouseButton1Down:connect(function()
- workspace:FindFirstChild(tostring(game:GetService("Players").LocalPlayer).. "'s Boat")["Controller"]["VehicleSeat"].MaxSpeed = 500
- end)
- Creature.Name = "Creature"
- Creature.Parent = Fishthing
- Creature.BackgroundColor3 = Color3.new(1, 1, 1)
- Creature.Position = UDim2.new(0.637298107, 0, 0.240997225, 0)
- Creature.Size = UDim2.new(0, 188, 0, 47)
- Creature.Font = Enum.Font.SourceSans
- Creature.Text = "Creature Locator"
- Creature.TextColor3 = Color3.new(0, 0, 0)
- Creature.TextSize = 14
- Creature.MouseButton1Down:connect(function()
- for _, model in pairs(workspace:GetChildren()) do
- if model:FindFirstChild("IsSeaMonster") and not model["HumanoidRootPart"]:FindFirstChild("CreatureLocator") then
- local billboard = Instance.new("BillboardGui", model["HumanoidRootPart"])
- billboard.Name = "CreatureLocator"
- billboard.AlwaysOnTop = true
- billboard.Active = true
- billboard.ClipsDescendants = true
- billboard.Size = UDim2.new(0,200,0,100)
- billboard.StudsOffsetWorldSpace = Vector3.new(0,0,25)
- billboard.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
- billboard.Adornee = model["HumanoidRootPart"]
- local locatedName = Instance.new("TextLabel", billboard)
- locatedName.Name = "locatedNameLabel"
- locatedName.BackgroundTransparency = 1
- locatedName.Font = Enum.Font.SourceSansBold
- locatedName.Text = tostring(model)
- locatedName.TextColor3 = Color3.fromRGB(255,255,255)
- locatedName.Size = UDim2.new(1,0,1,0)
- locatedName.TextSize = 10
- locatedName.TextStrokeTransparency = 0
- --[[ -- delete [ from here and add them above to remove
- billboard:Destroy()
- -]]
- end
- end
- end)
- TpBoat.Name = "TpBoat"
- TpBoat.Parent = Fishthing
- TpBoat.BackgroundColor3 = Color3.new(1, 1, 1)
- TpBoat.Position = UDim2.new(0.0190895796, 0, 0.434903026, 0)
- TpBoat.Size = UDim2.new(0, 188, 0, 47)
- TpBoat.Font = Enum.Font.SourceSans
- TpBoat.Text = "Teleport to Boat"
- TpBoat.TextColor3 = Color3.new(0, 0, 0)
- TpBoat.TextSize = 14
- TpBoat.MouseButton1Down:connect(function()
- game:GetService("Players").LocalPlayer.Character["HumanoidRootPart"].CFrame = CFrame.new(workspace:FindFirstChild(tostring(game:GetService("Players").LocalPlayer).. "'s Boat")["Controller"]["VehicleSeat"].Position + Vector3.new(0,2,0))
- end)
- TpBoat_2.Name = "TpBoat"
- TpBoat_2.Parent = Fishthing
- TpBoat_2.BackgroundColor3 = Color3.new(1, 1, 1)
- TpBoat_2.Position = UDim2.new(0.0190895796, 0, 0.434903026, 0)
- TpBoat_2.Size = UDim2.new(0, 188, 0, 47)
- TpBoat_2.Font = Enum.Font.SourceSans
- TpBoat_2.Text = "Teleport to Boat"
- TpBoat_2.TextColor3 = Color3.new(0, 0, 0)
- TpBoat_2.TextSize = 14
- InstaCatch.Name = "Insta Catch"
- InstaCatch.Parent = Fishthing
- InstaCatch.BackgroundColor3 = Color3.new(1, 1, 1)
- InstaCatch.Position = UDim2.new(0.333333343, 0, 0.434903055, 0)
- InstaCatch.Size = UDim2.new(0, 188, 0, 47)
- InstaCatch.Font = Enum.Font.SourceSans
- InstaCatch.Text = "Insta Catch"
- InstaCatch.TextColor3 = Color3.new(0, 0, 0)
- InstaCatch.TextSize = 14
- InstaCatch.MouseButton1Down:connect(function()
- -- Script generated by R2Sv2
- -- R2Sv2 fixed by ButterflyEffect, dragging function Danisty§#9161
- -- Remote Path: game:GetService("ReplicatedStorage").CloudClientResources.Communication.Events.FishCaught
- local Event = game:GetService("ReplicatedStorage").CloudClientResources.Communication.Events.FishCaught
- Event:FireServer()
- end)
- random.Name = "random"
- random.Parent = Fishthing
- random.BackgroundColor3 = Color3.new(1, 1, 1)
- random.BackgroundTransparency = 0.5
- random.Position = UDim2.new(0.019089574, 0, 0.722991705, 0)
- random.Size = UDim2.new(0, 314, 0, 36)
- random.Font = Enum.Font.SourceSans
- random.Text = "1. first throw your cast and execute this once"
- random.TextColor3 = Color3.new(0, 0, 0)
- random.TextSize = 14
- random2.Name = "random2"
- random2.Parent = Fishthing
- random2.BackgroundColor3 = Color3.new(1, 1, 1)
- random2.BackgroundTransparency = 0.5
- random2.Position = UDim2.new(0.019089574, 0, 0.595567882, 0)
- random2.Size = UDim2.new(0, 314, 0, 36)
- random2.Font = Enum.Font.SourceSans
- random2.Text = "---------Insta Catch--------------"
- random2.TextColor3 = Color3.new(0, 0, 0)
- random2.TextSize = 14
- ok.Name = "ok"
- ok.Parent = Fishthing
- ok.BackgroundColor3 = Color3.new(1, 1, 1)
- ok.BackgroundTransparency = 0.5
- ok.Position = UDim2.new(0.020557994, 0, 0.847645402, 0)
- ok.Size = UDim2.new(0, 614, 0, 36)
- ok.Font = Enum.Font.SourceSans
- ok.Text = "2. wait for the bubbles and for the thing to show up and execute again and boom you got 2 fish without any effort"
- ok.TextColor3 = Color3.new(0, 0, 0)
- ok.TextSize = 14
- idk.Name = "idk"
- idk.Parent = Fishthing
- idk.BackgroundColor3 = Color3.new(1, 1, 1)
- idk.BackgroundTransparency = 0.5
- idk.Position = UDim2.new(0.501387835, 0, 0.722168148, 0)
- idk.Size = UDim2.new(0, 314, 0, 36)
- idk.Font = Enum.Font.SourceSans
- idk.Text = "3. don't spam it too much or you will get kicked"
- idk.TextColor3 = Color3.new(0, 0, 0)
- idk.TextSize = 14
- Close.Name = "Close"
- Close.Parent = Fishthing
- Close.BackgroundColor3 = Color3.new(1, 1, 1)
- Close.BackgroundTransparency = 1
- Close.Position = UDim2.new(0.922173321, 0, 0, 0)
- Close.Size = UDim2.new(0, 53, 0, 42)
- Close.Font = Enum.Font.SourceSans
- Close.Text = "X"
- Close.TextColor3 = Color3.new(0, 0, 0)
- Close.TextSize = 30
- Close.MouseButton1Down:connect(function()
- Open.Visible = true
- Fishthing.Visible = false
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement