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

Why won't this script work online?

Asked by 9 years ago

The localscript works fine in solo, but online it says that 'activCamNo' does not exist. I'm confuzzled.

01local p= script.Parent.Parent.Parent    --game.Players.LocalPlayer
02local char= p.Character
03local cam= workspace.CurrentCamera
04 
05local camList= {
06workspace.Cam1.Viewpoint,
07workspace.Cam2.Viewpoint,
08workspace.Cam3.Viewpoint
09}
10 
11local activCam= 1
12local activCamNo= Instance.new("IntConstrainedValue")
13activCamNo.Name= "CamNo"
14activCamNo.Parent= script.Parent
15active= false
View all 41 lines...
0
Try adding "repeat wait until activeCamNo ~= nil" before line 15 (without quotes.) Spongocardo 1991 — 9y
0
Ah, thanks :) TehRandoms 0 — 9y

2 answers

Log in to vote
0
Answered by
woodengop 1134 Moderation Voter
9 years ago

Prevention

In-order to prevent from "Scripts not working online" use the YieldFunction, WaitForChild or repeat wait() until Object_name.

WaitForChild

What is WaitForChild()?

What does it do?

The YieldFunction WaitForChild yields to the current thread until a child with the given title is found, if Not, then your code will not run at all.

Fixed Code

01local p= script.Parent.Parent.Parent    --game.Players.LocalPlayer
02local char= p.Character
03local cam= workspace.CurrentCamera
04 
05local camList= {
06workspace.Cam1.Viewpoint,
07workspace.Cam2.Viewpoint,
08workspace.Cam3.Viewpoint
09}
10 
11local activCam= 1
12local activCamNo= Instance.new("IntConstrainedValue")
13activCamNo.Name= "CamNo"
14activCamNo.Parent= script.Parent
15repeat wait()  until activCamNo
View all 42 lines...

Don't be discombobulated with FindFirstChild

Ad
Log in to vote
-1
Answered by
snow29 0
9 years ago

It says ~~~~~~~~~~~~~~~~~ active = false

1Not~~~~~~~~~~~~~~~~~
2activCamNo = false

:P

Answer this question