local player = game.Players.LocalPlayer local char = player.Character or player.CharacterAdded:Wait() local mouse = player:GetMouse() -- Busca el accesorio llamado "Surfboard" local hat = char:FindFirstChild("Surfboard") if hat and hat:FindFirstChild("Handle") then local handle = hat.Handle handle.Anchored = false -- Actualiza cada frame local rs = game:GetService("RunService") rs.RenderStepped:Connect(function() -- Mueve el hat hacia la posición del mouse local targetPos = mouse.Hit.Position handle.Position = targetPos -- Aplica rotación rápida simulando "fling" handle.RotVelocity = Vector3.new(0, 2000, 0) -- gira muy rápido en Y end) end