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

Something wrong in the script,working in studio but not in roblox game,someone knows what happen??

Asked by 6 years ago

There are 2 scripts not working in game.

First one

01while true do
02wait(1)
03script.Parent.HumanoidRootPart.Steps:Stop()
04script.Parent.Base.PointLight.Range = 0
05script.Parent.Base.PointLight2.Range = 0
06script.Parent.Humanoid.WalkSpeed = 9
07script.Parent.V.Value = 1
08local Player = game:GetService("Players").LocalPlayer
09local stats = Player:WaitForChild("stats")
10local Light = Player.stats.Light
11if script.Parent.V.Value == 1 and Light.Value == 1 then
12    script.Parent.Base.PointLight2.Range = 18
13    script.Parent.Humanoid.WalkSpeed = 30
14else
15end
View all 32 lines...

Second one

01local Player = game:GetService("Players").LocalPlayer
02local stats = Player:WaitForChild("stats")
03local Light = Player.stats.Light
04while true do
05if script.Parent.V.Value == 1 and Light.Value == 1 then
06    script.Parent.Base.PointLight1.Range = 0
07    script.Parent.Base.PointLight2.Range = 18
08    script.Parent.Humanoid.WalkSpeed = 30
09    local script2 = script.Parent.Script2 .
10    script2.Parent = game.Lighting
11wait (9)
12   script.Parent.Base.PointLight2.Range = 0
13 script.Parent.Base.PointLight1.Range = 0
14    script.Parent.Humanoid.WalkSpeed = 9
15script2.Parent = script.Parent
16 
17end

3 answers

Log in to vote
0
Answered by 6 years ago

Not very hard. Just put them into a LocalScript. That is probably the problem if the script is working in studio but not in the game.

0
Just put them into a LocalScript. ew_girl21 2 — 6y
Ad
Log in to vote
0
Answered by 6 years ago
Log in to vote
0
Answered by 6 years ago

Put those not-working scripts into LocalScripts since FE runs only Local Scripts inside StarterGui. Hopefuly this will fix your problem!

Answer this question