i was wondering if you can roundfiy an Instance.new('frame')
this is what i mean:
1 | frame = Instance.new( 'frame' ,game.StarterGui) |
2 | frame.roundfiy = true -- does not work |
1 | local frame = Instance.new( 'frame' ,game.StarterGui) |
2 |
3 | local UICorner = Instance.new( "UICorner" );UICorner.Parent = frame |
4 | UICorner.CornerRadius = UDim.new( 8 , 0 ) |