-- [[ Rscripts Risk Notice ]] -- This script is not verified by rscripts.net. Deal with caution. -- -- Stay safe: -- • Never log in on unofficial Roblox sites or lookalike domains. -- • Real Roblox links use roblox.com (check the .com ending). -- • Treat fake Roblox login / "claim reward" pages as phishing. -- [[ End Rscripts Risk Notice ]] local lp = game:GetService("Players").LocalPlayer local RS = game:GetService("ReplicatedStorage") local RunService = game:GetService("RunService") local MainGui = lp.PlayerGui:WaitForChild("MainGui") getgenv().NWKZ_Anchor = false getgenv().NWKZ_AutoCast = false local sg = Instance.new("ScreenGui", lp.PlayerGui) sg.Name = "MAKER" sg.ResetOnSpawn = false local Main = Instance.new("Frame", sg) Main.Size = UDim2.new(0, 200, 0, 185) Main.Position = UDim2.new(0.05, 0, 0.4, 0) Main.BackgroundColor3 = Color3.fromRGB(20, 20, 25) Main.Active = true Main.Draggable = true Instance.new("UICorner", Main).CornerRadius = UDim.new(0, 10) local Title = Instance.new("TextLabel", Main) Title.Size = UDim2.new(1, 0, 0, 40) Title.Text = "MAKER" Title.TextColor3 = Color3.fromRGB(0, 255, 150) Title.Font = Enum.Font.GothamBold Title.BackgroundTransparency = 1 local AnchorBtn = Instance.new("TextButton", Main) AnchorBtn.Name = "UFPLay" AnchorBtn.Size = UDim2.new(0.85, 0, 0, 35) AnchorBtn.Position = UDim2.new(0.075, 0, 0, 45) AnchorBtn.Text = "ANCHOR: OFF" AnchorBtn.BackgroundColor3 = Color3.fromRGB(150, 0, 0) AnchorBtn.TextColor3 = Color3.new(1, 1, 1) AnchorBtn.Font = Enum.Font.GothamBold Instance.new("UICorner", AnchorBtn) local CastBtn = Instance.new("TextButton", Main) CastBtn.Name = "UFPLay" CastBtn.Size = UDim2.new(0.85, 0, 0, 35) CastBtn.Position = UDim2.new(0.075, 0, 0, 90) CastBtn.Text = "AUTO CAST: OFF" CastBtn.BackgroundColor3 = Color3.fromRGB(150, 0, 0) CastBtn.TextColor3 = Color3.new(1, 1, 1) CastBtn.Font = Enum.Font.GothamBold Instance.new("UICorner", CastBtn) local SellBtn = Instance.new("TextButton", Main) SellBtn.Name = "UFPLay" SellBtn.Size = UDim2.new(0.85, 0, 0, 35) SellBtn.Position = UDim2.new(0.075, 0, 0, 135) SellBtn.Text = "SELL ALL" SellBtn.BackgroundColor3 = Color3.fromRGB(0, 80, 150) SellBtn.TextColor3 = Color3.new(1, 1, 1) SellBtn.Font = Enum.Font.GothamBold Instance.new("UICorner", SellBtn) AnchorBtn.MouseButton1Click:Connect(function() getgenv().NWKZ_Anchor = not getgenv().NWKZ_Anchor AnchorBtn.Text = "ANCHOR: " .. (getgenv().NWKZ_Anchor and "ON" or "OFF") AnchorBtn.BackgroundColor3 = getgenv().NWKZ_Anchor and Color3.fromRGB(0, 150, 80) or Color3.fromRGB(150, 0, 0) end) CastBtn.MouseButton1Click:Connect(function() getgenv().NWKZ_AutoCast = not getgenv().NWKZ_AutoCast CastBtn.Text = "AUTO CAST: " .. (getgenv().NWKZ_AutoCast and "ON" or "OFF") CastBtn.BackgroundColor3 = getgenv().NWKZ_AutoCast and Color3.fromRGB(0, 150, 80) or Color3.fromRGB(150, 0, 0) end) SellBtn.MouseButton1Click:Connect(function() RS.Events.SellFish:FireServer("All") SellBtn.Text = "¡VENDIDO!" task.wait(0.5) SellBtn.Text = "SELL ALL" end) task.spawn(function() while task.wait(1) do if getgenv().NWKZ_AutoCast then pcall(function() local char = lp.Character if char and not char:GetAttribute("Fishing") and not MainGui.Fishing.Visible then RS.Events.Fishing:FireServer() end end) end end end) RunService.RenderStepped:Connect(function() if getgenv().NWKZ_Anchor then pcall(function() local fishingUI = MainGui.Fishing if fishingUI.Visible then local bar = fishingUI.BarFrame.Bar bar.Position = UDim2.new(0.5, 0, bar.Position.Y.Scale, 0) RS.Fishing:FireServer("1") end end) end end)