Im fiddling around with some math related stuff and converted the parametric equation for a circle into roblox code, but I’m not sure if I actually did it correctly

local radius = 5
local x
local y
for angle = 1,360 do
x = radius * math.cos(angle)
y = radius * math.sin(angle)
end