Thank you for using our website
Your script:
local player = game.Players.LocalPlayer
local gui = player:WaitForChild("PlayerGui"):WaitForChild("Fishing"):WaitForChild("Container"):WaitForChild("ReelFrame")
local reelBar = gui:WaitForChild("ReelBar")
local target = gui:WaitForChild("Target")
game:GetService("RunService").RenderStepped:Connect(function()
reelBar.Position = target.Position
reelBar.AnchorPoint = target.AnchorPoint
end)





