Someone help pls!?
Please make your question title relevant to your question content. It should be a one-sentence summary in question form.
I've been playing with this for 5 hours and my brain is starting to explode...
So this is actually the intro i've got... and it only works in solo mode when i go with testing 2 players or testing trough website button play it doesn't work too
so when player joins server the cam rotates then he clicks play button which stops rotating it but it doesn't work as i said. I'm using music for the intro but if 1 player clicks "play " the intromusic dies and if other joins he cant hear it...
So heres the script of gui button
01 | function onButton 1 Down() |
03 | game.Workspace.IntroMusic.Volume = 0.9 |
05 | game.Workspace.IntroMusic.Volume = 0.8 |
07 | game.Workspace.IntroMusic.Volume = 0.7 |
09 | game.Workspace.IntroMusic.Volume = 0.6 |
11 | game.Workspace.IntroMusic.Volume = 0.5 |
13 | game.Workspace.IntroMusic.Volume = 0.4 |
15 | game.Workspace.IntroMusic.Volume = 0.3 |
17 | game.Workspace.IntroMusic.Volume = 0.2 |
19 | game.Workspace.IntroMusic.Volume = 0.1 |
21 | game.Workspace.IntroMusic.Volume = 0 |
23 | game.Workspace.IntroMusic:remove() |
29 | script.Parent.MouseButton 1 Down:connect(onButton 1 Down) |
This is the one which lowers intromusic then removes it
01 | function onButton 1 Down() |
02 | game.Workspace.CurrentCamera:remove() |
04 | game.Workspace.CurrentCamera.CameraSubject = game.Players.LocalPlayer.Character.Humanoid |
05 | game.Workspace.CurrentCamera.CameraType = "Custom" |
06 | game.Workspace.CurrentCamera.FieldOfView = 70 |
11 | script.Parent.MouseButton 1 Down:connect(onButton 1 Down) |
this is the script of play button when clicked kills the camera and player goes into game
1 | script.Parent.MouseButton 1 Click:connect( function () |
2 | script.Parent.Visible = false |
this is the one that makes the gui disappear after clicked
1 | game.Players.PlayerAdded:connect( function (player) |
3 | script.LocalScript:clone().Parent = player.CharacterAdded:wait() |
this one that adds the localscript to player when joined
01 | local target = workspace.IntCam.Head |
02 | local camera = workspace.CurrentCamera |
03 | camera.CameraSubject = target |
07 | camera.CoordinateFrame = CFrame.new(target.Position) |
08 | * CFrame.Angles( 0 ,angle, 0 ) |
10 | angle = angle + math.rad(. 3 ) |
and this script rotates the player's screen when he joined.
So again when i test it trough 2 players server mode it doesn't work. If i test it solo mode it works. If i test it trough website's in my profile "Play button" it doesn't work. Here is the link to see that it doesn't work. That's all i tried my best to explain now i don't know wheres the issue? Please help!
http://www.roblox.com/games/176172096/Military-Tycoon-UPDATES