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

Problem with my intro gui script?

Asked by
Relatch 550 Moderation Voter
10 years ago
01while true do
02    script.Parent.BackgroundTransparency = 0
03    script.Jeopardy:Play()
04    script.Parent.Text = "Loading"
05    script.Parent.Loading:TweenSize(UDim2.new(0.05, 0, 0, 0), "Back", 5)
06    wait(5)
07    script.Parent.Text = ""
08    script.Jeopardy:Stop()
09    wait(0.1)
10    script.Parent.BackgroundTransparency = 0.1
11    wait(0.2)
12    script.Parent.BackgroundTransparency = 0.2
13    wait(0.2)
14    script.Parent.BackgroundTransparency = 0.3
15    wait(0.2)
View all 30 lines...

Error: Unable to cast string to token

1 answer

Log in to vote
3
Answered by
Muoshuu 580 Moderation Voter
10 years ago

You must be using a LocalScript to tween an object (If you are not), You also forgot your EasingDirection just after the endSize

Example:

01while true do
02    script.Parent.BackgroundTransparency = 0
03    script.Jeopardy:Play()
04    script.Parent.Text = "Loading"
05    script.Parent.Loading:TweenSize(UDim2.new(0.05, 0, 0, 0), "Out","Back", 5)
06    wait(5)
07    script.Parent.Text = ""
08    script.Jeopardy:Stop()
09    wait(0.1)
10    for i=0,1,.1 do
11        script.Parent.BackgroundTransparency = i
12        wait(0.2)
13    end
14    wait(5)
15end
0
Now, it seems the gui gets smaller and disappears. Why is this? I only want it to get larger going right, like a loading screen. Relatch 550 — 10y
1
Change your endSize to UDim2.new(1,0,1,0) Muoshuu 580 — 10y
0
Now the whole screen is full. :/ Relatch 550 — 10y
1
Change it to the exact size you want it to be 1,0,1,0 means X and Y are 100% 0 Offset Muoshuu 580 — 10y
Ad

Answer this question