as a joke in my game i want to add poorly made text that spins into frame, but idk how to do that.
Can anyone help?
1 Like
Try looking into tween service: Tween | Documentation - Roblox Creator Hub
You can set the label to a small size and tween its rotation and size so it appears to spin into frame:
local tweenService = game:GetService("TweenService")
tweenService:Create(label,TweenInfo.new(3),{Rotation = 3600,Size = UDim2.new(1,0,1,0)})
1 Like
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.