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.
local FullFrame = Instance.new("Frame") local script = Instance.new('Script', FullFrame) script.Parent.Active = true script.Parent.Draggable = true
Doesn't seem to work even if i put it as a function
Can anyone help me please?
Make sure to enable selectable too
local FullFrame = Instance.new("Frame") local script = Instance.new('Script', FullFrame) script.Parent.Active = true script.Parent.Draggable = true script.Parent.Selectable = true