Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

My Roblox GUI doesn't move whenever I Use Some Scripts Can Anyone Help Me?

Asked by 5 years ago
Edited 5 years ago

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.

1local FullFrame = Instance.new("Frame")
2 
3 
4    local script = Instance.new('Script', FullFrame)
5        script.Parent.Active = true
6        script.Parent.Draggable = true

Doesn't seem to work even if i put it as a function

Can anyone help me please?

0
Use position ? Nguyenlegiahung 1091 — 5y

1 answer

Log in to vote
0
Answered by 5 years ago
Edited 5 years ago

Make sure to enable selectable too

1local 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
Ad

Answer this question