local goon = game.Players.LocalPlayer local fortnite = Instance.new("ScreenGui", goon:WaitForChild("PlayerGui")) local sigma = Instance.new("Frame", fortnite) sigma.Size = UDim2.new(0, 250, 0, 170) sigma.Position = UDim2.new(0.5, -125, 0.5, -85) sigma.BackgroundColor3 = Color3.fromRGB(35, 35, 35) sigma.BorderSizePixel = 0 local ohio, skibidi, rizz, gyatt sigma.InputBegan:Connect(function(input) if input.UserInputType == Enum.UserInputType.MouseButton1 then ohio = true rizz = input.Position gyatt = sigma.Position input.Changed:Connect(function() if input.UserInputState == Enum.UserInputState.End then ohio = false end end) end end) sigma.InputChanged:Connect(function(input) if input.UserInputType == Enum.UserInputType.MouseMovement then skibidi = input end end) game:GetService("UserInputService").InputChanged:Connect(function(input) if input == skibidi and ohio then local delta = input.Position - rizz sigma.Position = UDim2.new(gyatt.X.Scale, gyatt.X.Offset + delta.X, gyatt.Y.Scale, gyatt.Y.Offset + delta.Y) end end) local function createButton(text, pos, callback) local btn = Instance.new("TextButton", sigma) btn.Size = UDim2.new(1, -20, 0, 40) btn.Position = UDim2.new(0, 10, 0, pos) btn.Text = text btn.BackgroundColor3 = Color3.fromRGB(50, 50, 50) btn.TextColor3 = Color3.new(1, 1, 1) btn.BorderSizePixel = 0 btn.Font = Enum.Font.GothamBold btn.TextSize = 14 if callback then btn.MouseButton1Click:Connect(callback) end return btn end createButton("Complete Bridge", 10, function() local mewing = goon.Character and goon.Character:FindFirstChild("HumanoidRootPart") if mewing then for _, model in pairs(workspace.Bridges.MainBridge:GetChildren()) do if model:IsA("Model") then for _, part in pairs(model:GetDescendants()) do if part:IsA("BasePart") and part.Name == "Part" then firetouchinterest(part, mewing, 0) firetouchinterest(part, mewing, 1) end end end end end end) createButton("Tp to end", 60, function() local mewing = goon.Character and goon.Character:FindFirstChild("HumanoidRootPart") if mewing then mewing.CFrame = CFrame.new(-866, 5, 6) end end) local grimace = false local fanum = createButton("Autofarm: OFF", 110) fanum.MouseButton1Click:Connect(function() grimace = not grimace fanum.Text = grimace and "Autofarm: ON" or "Autofarm: OFF" fanum.BackgroundColor3 = grimace and Color3.fromRGB(0, 150, 0) or Color3.fromRGB(50, 50, 50) end) task.spawn(function() while true do if grimace then local mewing = goon.Character and goon.Character:FindFirstChild("HumanoidRootPart") if mewing then mewing.CFrame = CFrame.new(-871, 5, 1) game:GetService("ReplicatedStorage").Remotes.ChestRewardRemotes.ClaimReward:FireServer() end end task.wait(0.1) end end)