Why wont Gui Objects in SurfaceGui show when spawned via script?
local SurfaceGui = Instance.new("SurfaceGui", Target)
local Frame = Instance.new("Frame", SurfaceGui)
Frame.ClipsDescendants = true
SurfaceGui.ClipsDescendants = true
SurfaceGui.AlwaysOnTop = true
SurfaceGui.Adornee = Target
Target is a BasePart
When I run the game, the gui in the surfacegui just wont show