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
01 | local p = script.Parent.Parent.Parent |
02 | local char = p.Character |
03 | local cam = workspace.CurrentCamera |
06 | workspace.Cam 1. Viewpoint, |
07 | workspace.Cam 2. Viewpoint, |
08 | workspace.Cam 3. Viewpoint |
12 | local activCamNo = Instance.new( "IntConstrainedValue" ) |
13 | activCamNo.Name = "CamNo" |
14 | activCamNo.Parent = script.Parent |
15 | repeat wait() until activCamNo |
19 | activCamNo.MaxValue = #camList |
21 | if activCamNo.Value = = 0 then |
23 | activCam = char.Humanoid |
24 | elseif activCamNo.Value~ = 0 then |
26 | activCam = camList [ activCamNo.Value ] |
31 | game:GetService( 'RunService' ).Stepped:connect( function () |
33 | if active = = false then |
34 | cam.CameraType = "Custom" |
35 | char.Humanoid.WalkSpeed = 10 |
36 | elseif active = = true then |
37 | cam.CameraType = 'Scriptable' |
38 | cam.CoordinateFrame = CFrame.new(activCam.Position, CFrame.new(activCam.CFrame * Vector 3. new( 0 , 0 ,- 1 )).p) |
39 | char.Humanoid.WalkSpeed = 0 |
Don't be discombobulated with FindFirstChild