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 4 years ago
Edited 4 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.

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?

0
Use position ? Nguyenlegiahung 1091 — 4y

1 answer

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

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
Ad

Answer this question