Tween Position With a gui? Error:Can only tween objects in the workspace.
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:
002 | local HIPZ = Instance.new( "ScreenGui" ) |
003 | local Notify = Instance.new( "Frame" ) |
004 | local Title = Instance.new( "TextLabel" ) |
005 | local Frame = Instance.new( "Frame" ) |
006 | local Desc = Instance.new( "TextLabel" ) |
007 | local Main = Instance.new( "Frame" ) |
008 | local Name = Instance.new( "TextLabel" ) |
009 | local Content = Instance.new( "Frame" ) |
010 | local output = Instance.new( "ScrollingFrame" ) |
011 | local TextLabel = Instance.new( "TextLabel" ) |
012 | local input = Instance.new( "TextBox" ) |
016 | HIPZ.Parent = game.Players.LocalPlayer.PlayerGui |
017 | HIPZ.ZIndexBehavior = Enum.ZIndexBehavior.Sibling |
019 | Notify.Name = "Notify" |
021 | Notify.BackgroundColor 3 = Color 3. new( 0.117647 , 0.117647 , 0.117647 ) |
022 | Notify.BorderSizePixel = 0 |
023 | Notify.Position = UDim 2. new( 0.295187205 , 0 , 0 , 0 ) |
024 | Notify.Size = UDim 2. new( 0 , 387 , 0 , 95 ) |
028 | Title.BackgroundColor 3 = Color 3. new( 1 , 1 , 1 ) |
029 | Title.BackgroundTransparency = 1 |
030 | Title.BorderColor 3 = Color 3. new( 0.772549 , 0.772549 , 0.772549 ) |
031 | Title.Size = UDim 2. new( 0 , 387 , 0 , 26 ) |
032 | Title.Font = Enum.Font.Code |
034 | Title.TextColor 3 = Color 3. new( 1 , 1 , 1 ) |
038 | Frame.BackgroundColor 3 = Color 3. new( 1 , 1 , 1 ) |
039 | Frame.Position = UDim 2. new( 0 , 0 , 0.273684204 , 0 ) |
040 | Frame.Size = UDim 2. new( 0 , 386 , 0 , 0 ) |
044 | Desc.BackgroundColor 3 = Color 3. new( 1 , 1 , 1 ) |
045 | Desc.BackgroundTransparency = 1 |
046 | Desc.Position = UDim 2. new( 0 , 0 , 0.273684204 , 0 ) |
047 | Desc.Size = UDim 2. new( 0 , 386 , 0 , 69 ) |
048 | Desc.Font = Enum.Font.Code |
050 | Desc.TextColor 3 = Color 3. new( 1 , 1 , 1 ) |
055 | Main.BackgroundColor 3 = Color 3. new( 0.117647 , 0.117647 , 0.117647 ) |
056 | Main.Position = UDim 2. new( 0 , 0 , 0.673501611 , 0 ) |
057 | Main.Size = UDim 2. new( 0 , 417 , 0 , 187 ) |
061 | Name.BackgroundColor 3 = Color 3. new( 1 , 1 , 1 ) |
062 | Name.BackgroundTransparency = 1 |
063 | Name.BorderSizePixel = 0 |
064 | Name.Position = UDim 2. new( 0.791366875 , 0 , 0.43315506 , 0 ) |
066 | Name.Size = UDim 2. new( 0 , 149 , 0 , 25 ) |
067 | Name.Font = Enum.Font.Code |
068 | Name.Text = "HIPZ - MENU - VERS" |
069 | Name.TextColor 3 = Color 3. new( 1 , 1 , 1 ) |
072 | Content.Name = "Content" |
074 | Content.BackgroundColor 3 = Color 3. new( 1 , 1 , 1 ) |
075 | Content.BackgroundTransparency = 1 |
076 | Content.Size = UDim 2. new( 0 , 386 , 0 , 187 ) |
078 | output.Name = "output" |
079 | output.Parent = Content |
080 | output.BackgroundColor 3 = Color 3. new( 1 , 1 , 1 ) |
081 | output.BackgroundTransparency = 1 |
082 | output.BorderSizePixel = 3 |
083 | output.Position = UDim 2. new( 0.0155440411 , 0 , 0.0320855603 , 0 ) |
084 | output.Size = UDim 2. new( 0 , 373 , 0 , 128 ) |
086 | TextLabel.Parent = output |
087 | TextLabel.BackgroundColor 3 = Color 3. new( 1 , 1 , 1 ) |
088 | TextLabel.BackgroundTransparency = 1 |
089 | TextLabel.Size = UDim 2. new( 0 , 358 , 0 , 19 ) |
090 | TextLabel.Font = Enum.Font.SourceSans |
091 | TextLabel.Text = "test" |
092 | TextLabel.TextColor 3 = Color 3. new( 0.180392 , 1 , 0 ) |
093 | TextLabel.TextSize = 14 |
096 | input.Parent = Content |
097 | input.BackgroundColor 3 = Color 3. new( 1 , 1 , 1 ) |
098 | input.BackgroundTransparency = 1 |
099 | input.Position = UDim 2. new( 0.0155440411 , 0 , 0.828877032 , 0 ) |
100 | input.Size = UDim 2. new( 0 , 373 , 0 , 21 ) |
101 | input.Font = Enum.Font.SourceSans |
102 | input.PlaceholderText = "Input" |
104 | input.TextColor 3 = Color 3. new( 0.980392 , 0.980392 , 0.980392 ) |
106 | input.TextXAlignment = Enum.TextXAlignment.Left |
108 | Notify.Position = UDim 2. new( 0.295187205 , 0 , - 1 , 0 ) |
109 | function notify(title, esc) |
110 | local new = Notify:Clone() |
111 | new.Position = Notify.Position |
112 | new.Title.Text = title |
114 | new:TweenPosition(UDim 2. new( 0.295187205 , 0 , 0 , 0 ),Enum.EasingDirection.In,Enum.EasingStyle.Back,. 6 , true , nil ) |
116 | new:TweenPosition(UDim 2. new( 0.295187205 , 0 , - 1 , 0 ),Enum.EasingDirection.Out,Enum.EasingStyle.Back,. 6 , true , nil ) |