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

Tween Position With a gui? Error:Can only tween objects in the workspace.

Asked by
1lO_Ql1 -1
5 years ago

My gui is made to tween a notify gui but it will keep erroring with "Can only tween objects in the workspace". Can someone help me? Code:

001script.Parent = nil
002local HIPZ = Instance.new("ScreenGui")
003local Notify = Instance.new("Frame")
004local Title = Instance.new("TextLabel")
005local Frame = Instance.new("Frame")
006local Desc = Instance.new("TextLabel")
007local Main = Instance.new("Frame")
008local Name = Instance.new("TextLabel")
009local Content = Instance.new("Frame")
010local output = Instance.new("ScrollingFrame")
011local TextLabel = Instance.new("TextLabel")
012local input = Instance.new("TextBox")
013 
014-- Properties
015HIPZ.Name = "HIPZ"
View all 121 lines...
0
Its for a friend. ;3 1lO_Ql1 -1 — 5y
1
BRUH JUST BUILD A CUSTOm GUI WITHOUT USING A SCRIPT AAAAAAA greatneil80 2647 — 5y

1 answer

Log in to vote
-1
Answered by 5 years ago

Try this

001script.Parent = nil
002local HIPZ = Instance.new("ScreenGui")
003local Notify = Instance.new("Frame")
004local Title = Instance.new("TextLabel")
005local Frame = Instance.new("Frame")
006local Desc = Instance.new("TextLabel")
007local Main = Instance.new("Frame")
008local Name = Instance.new("TextLabel")
009local Content = Instance.new("Frame")
010local output = Instance.new("ScrollingFrame")
011local TextLabel = Instance.new("TextLabel")
012local input = Instance.new("TextBox")
013 
014-- Properties
015HIPZ.Name = "HIPZ"
View all 122 lines...
0
Thanks. 1lO_Ql1 -1 — 5y
0
No problem, glad I could help. CeramicTile 847 — 5y
Ad

Answer this question