i need help With intro script it need to be seen by only the local player
1 | game.Players.localPlayer.PlayerAdded:connect( function (player) |
2 | script.IntroGui:Clone().Parent = player.PlayerGui |
3 | 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:
1 | game.Players.PlayerAdded:connect( function (player) |
2 | x = script.IntroGui:Clone() |
3 | x.Parent = player.PlayerGui |
4 | end ) |
For local script:
1 | game.Players.ChildAdded:connect( function (player) |
2 | x = script.IntroGui:Clone() |
3 | x.Parent = player.PlayerGui |
4 | end ) |