Browse
Script Types
Tools
Community
Reach players with keyless, universal, or place-specific scripts.


Heavyweight FishingNO KEYCasting and selling are handled as two separate parts of the fishing cycle. Auto Cast repeats rod casts, while Sell All triggers the available sell-all action when needed. This setup automates the start of each fishing attempt and shortens the selling step, but it does not list automatic reeling, catching, or timed selling. The menu also includes Anchor, although its exact behavior in this version could not be confirmed.
Auto Cast keeps starting new casts without requiring the rod to be thrown manually each time. No separate auto-reel or auto-catch function is included in the provided list, so those actions should not be assumed.
Sell All works as a separate action rather than an automatic selling loop. Players decide when to use it after completing their fishing session or collecting catches.
Anchoris listed in the menu, but its exact purpose is not confirmed for this build.
Another Heavyweight Fishing script uses the same label for locking the fishing minigame bar. Without the MAKERR source code or a matching showcase, that behavior cannot be treated as confirmed here.
1local lp = game:GetService("Players").LocalPlayer2local RS = game:GetService("ReplicatedStorage")3local RunService = game:GetService("RunService")4local MainGui = lp.PlayerGui:WaitForChild("MainGui")56getgenv().NWKZ_Anchor = false7getgenv().NWKZ_AutoCast = false89local sg = Instance.new("ScreenGui", lp.PlayerGui)10sg.Name = "MAKER"11sg.ResetOnSpawn = false1213local Main = Instance.new("Frame", sg)14Main.Size = UDim2.new(0, 200, 0, 185)15Main.Position = UDim2.new(0.05, 0, 0.4, 0)16Main.BackgroundColor3 = Color3.fromRGB(20, 20, 25)17Main.Active = true18Main.Draggable = true19Instance.new("UICorner", Main).CornerRadius = UDim.new(0, 10)2021local Title = Instance.new("TextLabel", Main)22Title.Size = UDim2.new(1, 0, 0, 40)23Title.Text = "MAKER"24Title.TextColor3 = Color3.fromRGB(0, 255, 150)25Title.Font = Enum.Font.GothamBold26Title.BackgroundTransparency = 12728local AnchorBtn = Instance.new("TextButton", Main)29AnchorBtn.Name = "UFPLay"30AnchorBtn.Size = UDim2.new(0.85, 0, 0, 35)31AnchorBtn.Position = UDim2.new(0.075, 0, 0, 45)32AnchorBtn.Text = "ANCHOR: OFF"33AnchorBtn.BackgroundColor3 = Color3.fromRGB(150, 0, 0)34AnchorBtn.TextColor3 = Color3.new(1, 1, 1)35AnchorBtn.Font = Enum.Font.GothamBold36Instance.new("UICorner", AnchorBtn)3738local CastBtn = Instance.new("TextButton", Main)39CastBtn.Name = "UFPLay"40CastBtn.Size = UDim2.new(0.85, 0, 0, 35)41CastBtn.Position = UDim2.new(0.075, 0, 0, 90)42CastBtn.Text = "AUTO CAST: OFF"43CastBtn.BackgroundColor3 = Color3.fromRGB(150, 0, 0)44CastBtn.TextColor3 = Color3.new(1, 1, 1)45CastBtn.Font = Enum.Font.GothamBold46Instance.new("UICorner", CastBtn)4748local SellBtn = Instance.new("TextButton", Main)49SellBtn.Name = "UFPLay"50SellBtn.Size = UDim2.new(0.85, 0, 0, 35)51SellBtn.Position = UDim2.new(0.075, 0, 0, 135)52SellBtn.Text = "SELL ALL"53SellBtn.BackgroundColor3 = Color3.fromRGB(0, 80, 150)54SellBtn.TextColor3 = Color3.new(1, 1, 1)55SellBtn.Font = Enum.Font.GothamBold56Instance.new("UICorner", SellBtn)5758AnchorBtn.MouseButton1Click:Connect(function()59 getgenv().NWKZ_Anchor = not getgenv().NWKZ_Anchor60 AnchorBtn.Text = "ANCHOR: " .. (getgenv().NWKZ_Anchor and "ON" or "OFF")61 AnchorBtn.BackgroundColor3 = getgenv().NWKZ_Anchor and Color3.fromRGB(0, 150, 80) or Color3.fromRGB(150, 0, 0)62end)6364CastBtn.MouseButton1Click:Connect(function()65 getgenv().NWKZ_AutoCast = not getgenv().NWKZ_AutoCast66 CastBtn.Text = "AUTO CAST: " .. (getgenv().NWKZ_AutoCast and "ON" or "OFF")67 CastBtn.BackgroundColor3 = getgenv().NWKZ_AutoCast and Color3.fromRGB(0, 150, 80) or Color3.fromRGB(150, 0, 0)68end)6970SellBtn.MouseButton1Click:Connect(function()71 RS.Events.SellFish:FireServer("All")72 SellBtn.Text = "¡VENDIDO!"73 task.wait(0.5)74 SellBtn.Text = "SELL ALL"75end)7677task.spawn(function()78 while task.wait(1) do79 if getgenv().NWKZ_AutoCast then80 pcall(function()81 local char = lp.Character82 if char and not char:GetAttribute("Fishing") and not MainGui.Fishing.Visible then83 RS.Events.Fishing:FireServer()84 end85 end)86 end87 end88end)8990RunService.RenderStepped:Connect(function()91 if getgenv().NWKZ_Anchor then92 pcall(function()93 local fishingUI = MainGui.Fishing94 if fishingUI.Visible then95 local bar = fishingUI.BarFrame.Bar96 bar.Position = UDim2.new(0.5, 0, bar.Position.Y.Scale, 0)97 RS.Fishing:FireServer("1")98 end99 end)100 end101end)
Heavyweight FishingBy Unknown Journey
Comments · …
Loading comments…