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

Is This Script Correct?

Asked by 10 years ago

I Just Want To Check Although It Ain't, Can Someone Fix It?

game.Players.PlayerAdded:connect(function (plr)
Model=game.Workspace.IntroGui
Print "A Game Made By MrJimenex"
wait (5)
Print "Slendy Tubbies"
--I Want To Add A Picture Of The Slendy Tubbies When After Those 5 Seconds
wait (5)
ModelCopy=Model:Clone()
ModelCopy.Parent=plr.PlayerGui
wait (1)
plr.PlayerGui.IntroGui:Destroy()
0
Can you put your script inside the code block? (~~~~~~~~~~~~~~~~~) Thewsomeguy 448 — 10y
0
ok MrJimenex 0 — 10y
0
What exactly is not working? Tempestatem 884 — 10y
0
I want to make a GUI Intro and the last part will not work, I just need it to say A game made by MrJimenex, for 5 sec., then, Slendy Tubbies in a scary font, and I would like it with a slendy tubbie picture MrJimenex 0 — 10y
0
We;; first off, you added a "Print" which only appears in output. As for the scary font, you can either make a decal, then use the image, or use their current fonts. Tempestatem 884 — 10y

1 answer

Log in to vote
0
Answered by
KAAK82 16
10 years ago
game.Players.PlayerAdded:connect(function (plr)
Model=game.Workspace.IntroGui
Print "A Game Made By MrJimenex"
wait (5)
Print "Slendy Tubbies"
--I Want To Add A Picture Of The Slendy Tubbies When After Those 5 Seconds
wait (5)
ModelCopy=Model:clone() --clone() is supposed to be with a Small c
ModelCopy.Parent=plr.PlayerGui
wait (1)
plr.PlayerGui.IntroGui:Destroy()
Ad

Answer this question