Hello, I have been working on my GUI and have tried multiple ways to move my GUI yet it doesn't ever move this is one I have tried.
1 | local FullFrame = Instance.new( "Frame" ) |
2 |
3 |
4 | local script = Instance.new( 'Script' , FullFrame) |
5 | script.Parent.Active = true |
6 | script.Parent.Draggable = true |
1 |
Doesn't seem to work even if i put it as a function
Can anyone help me please?
Make sure to enable selectable too
1 | local FullFrame = Instance.new( "Frame" ) |
2 |
3 |
4 | local script = Instance.new( 'Script' , FullFrame) |
5 | script.Parent.Active = true |
6 | script.Parent.Draggable = true |
7 | script.Parent.Selectable = true |