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

This only works when the value is at 65 when the game starts????

Asked by 3 years ago
while true do
    if script.Parent.MesoSpeed.Value >=65 then
        script.Parent.Parent.TornadoDamage.EF.Value = 0
        script.Parent.Parent.DebrisBall.Transparency = 0.2
        wait(40)
        script.Parent.Parent.Funnel.Mesh.Scale = Vector3.new(1200, 450, 1200)
    end
end
0
There is a script that makes the value increase. Chasers0919 -1 — 3y

1 answer

Log in to vote
0
Answered by 3 years ago

yeah thats because you check if the value is above 65 wdym

0
Say if the value starts at 63 and the value script increases it to 65 I want the tornadodamage the debrisball and funnel script to function how would I go about that? Chasers0919 -1 — 3y
0
You'd have to do the value + 1 JLKMaster 0 — 3y
0
I did that I just want the stuff to function once the value reaches 65 Chasers0919 -1 — 3y
0
then do if script.Parent.MesoSpeed.Value == 65 then wizz_zz 3 — 3y
0
and why are you using while true do that causes some extra things in console just use .Changed wizz_zz 3 — 3y
Ad

Answer this question