RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"make a frame go left every 1 second"
-- local script local frame = script.Parent.Frame local moveDistance = -50 local waitTime = 1 while true do frame.Position = frame.Position + UDim2.new(0, moveDistance, 0, 0) wait(waitTime) end