i need help With intro script it need to be seen by only the local player
game.Players.localPlayer.PlayerAdded:connect(function(player) script.IntroGui:Clone().Parent = player.PlayerGui end)
its a local script
Lol, I might get a -1 for this but.. you COULD just get the intro plugin for free. It's on the first page of your Manage Plugins.
Or just look at this link
http://wiki.roblox.com/index.php?title=Camera_manipulation
For server script:
game.Players.PlayerAdded:connect(function(player) x = script.IntroGui:Clone() x.Parent = player.PlayerGui end)
For local script:
game.Players.ChildAdded:connect(function(player) x = script.IntroGui:Clone() x.Parent = player.PlayerGui end)