The link you clicked leads to a Base64 encoded string.
To decode it, you can use:
For more options: Base64 Decoders
-- Example: shark chasing logic local shark = script.Parent local target = game.Workspace:FindFirstChild("Boat") while target do local direction = (target.Position - shark.Position).Unit shark.Velocity = direction * 50 wait(0.1) end