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

Someone help pls!?

Asked by
Bulvyte 388 Moderation Voter
9 years ago

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

01function onButton1Down()
02 
03    game.Workspace.IntroMusic.Volume = 0.9
04    wait(0.5)
05    game.Workspace.IntroMusic.Volume = 0.8
06    wait(0.5)
07    game.Workspace.IntroMusic.Volume = 0.7
08    wait(0.5)
09    game.Workspace.IntroMusic.Volume = 0.6
10    wait(0.5)
11    game.Workspace.IntroMusic.Volume = 0.5
12    wait(0.5)
13    game.Workspace.IntroMusic.Volume = 0.4
14    wait(0.5)
15    game.Workspace.IntroMusic.Volume = 0.3
View all 29 lines...

This is the one which lowers intromusic then removes it

01function onButton1Down()
02    game.Workspace.CurrentCamera:remove()
03    wait(.1)
04    game.Workspace.CurrentCamera.CameraSubject = game.Players.LocalPlayer.Character.Humanoid
05    game.Workspace.CurrentCamera.CameraType = "Custom"
06    game.Workspace.CurrentCamera.FieldOfView = 70
07end
08 
09 
10 
11script.Parent.MouseButton1Down:connect(onButton1Down)

this is the script of play button when clicked kills the camera and player goes into game

1script.Parent.MouseButton1Click:connect(function()
2script.Parent.Visible = false
3end)

this is the one that makes the gui disappear after clicked

1game.Players.PlayerAdded:connect(function(player)
2 
3script.LocalScript:clone().Parent = player.CharacterAdded:wait()
4 
5end)

this one that adds the localscript to player when joined

01local target = workspace.IntCam.Head
02local camera = workspace.CurrentCamera
03camera.CameraSubject = target
04local angle = 5
05 
06while wait() do
07    camera.CoordinateFrame = CFrame.new(target.Position)
08                                  * CFrame.Angles(0,angle,0)
09                                 * CFrame.new(0,0,-30)
10angle = angle + math.rad(.3)
11 
12end

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

1 answer

Log in to vote
0
Answered by 9 years ago

Problem This is because you put sound in Workspace for all to hear as 1 initial value. You delete the Workspace sound at Script:1 Line :23.

Solution Copy the Sound in workspace into a gui to be played locally so only the player who clicks the sound can hear it. This will allow you to be able to use sound for all players.

0
The intro music is the second problem the first problem is the intro about the camera... when plays join my server and click "PLAY" button the button disappears and does nothing i wanted the answer for intro solution but not intro music, but w/e atleast someone answered me :) Now if u can just help me with this intro pls! :) Bulvyte 388 — 9y
0
and you coulda told me what script to use... Bulvyte 388 — 9y
0
Its not a script problem its how you went at it. User#5978 25 — 9y
Ad

Answer this question