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

Why isn't the String Value changing?

Asked by 5 years ago
Edited 5 years ago

script 1:

01local ship = workspace.Ship
02local value = workspace.Value.Value
03 
04if value == 'intermission' then
05    local new = ship:Clone()
06    new.Parent = game.ServerStorage
07    value = 'ready'
08end
09 
10if value == 'regening' then
11    local shipclone = game.ServerStorage.Ship
12    local map = shipclone
13    map.Parent = workspace
14    value = 'intermission'
15end

script 2:

01local ship = script.Parent
02local value = workspace.Value.Value
03local PP = script.Parent.PrimaryPart
04local explosion = workspace.Explosion
05local sinking = workspace["Ship Sink 1"]
06local wave = workspace["Ocean wave sound effects [HD]"]
07workspace["Titanic Grand Staircase Ambiance "]:Play()
08wave:Play()
09 
10function sink()
11    value = 'sinking'
12    --private scripting
13end
14value = 'regening'
15 
16if value == 'ready' then
17    wait(60)
18    sink()
19end

Pls help

0
Please explain your problem a bit more! BashGuy10 384 — 5y
0
Well, i have 2 scripts: the one that sinks the ship (i dont want it leaked) and this one. This one is the regeneration script. I need the value to change so that i could see when something is supposed to change, but it doesnt change. Help. MradmannMvip 50 — 5y
1
what kind of scripts and also for script 1 I recommend you try changing the name of Value to something else because workspace.Value doesn't exist. change the name of the stringvalue then try... Also change Value to local value = workspce.value instead of workspace.Value.Value greatneil80 2647 — 5y
0
i will try that. MradmannMvip 50 — 5y

1 answer

Log in to vote
0
Answered by
BashGuy10 384 Moderation Voter
5 years ago
Edited 5 years ago

You want to use Changed on problems like this.

Only use Changed on values like Stringvalue or intvalues

01local ship = workspace.Ship
02local value = workspace.Value
03 
04value.Changed:Connect(function() -- ONLY USE CHANGED FOR STRINGVALUES, OBJECTVALUES, INTVALUES AND NUMBERVALUE, CFRAMEVALUES
05    if value.Value == 'intermission' then
06        local new = ship:Clone()
07        new.Parent = game.ServerStorage
08        value.Value = 'ready'
09    elseif value.Value == 'regening' then
10        local shipclone = game.ServerStorage.Ship
11        local map = shipclone
12        map.Parent = workspace
13        value.Value = 'intermission'
14    end
15 
16end)

Script 2:

01local ship = script.Parent
02local value = workspace.Value.Value
03local PP = script.Parent.PrimaryPart
04local explosion = workspace.Explosion
05local sinking = workspace["Ship Sink 1"]
06local wave = workspace["Ocean wave sound effects [HD]"]
07workspace["Titanic Grand Staircase Ambiance "]:Play()
08wave:Play()
09function sink()
10    value = 'sinking'
11    --private scripting
12    wait(100) -- Change this to how long you think it should sink for
13    value.Value = 'regening'
14end
15 
View all 24 lines...

If this helped, please mark this as the answer

0
alright, to the testing! MradmannMvip 50 — 5y
0
Most important thing when using code from answers: TESTING! BashGuy10 384 — 5y
0
no, didnt work, sorry. MradmannMvip 50 — 5y
0
edited BashGuy10 384 — 5y
View all comments (3 more)
0
still didnt work MradmannMvip 50 — 5y
0
i have no idea. BashGuy10 384 — 5y
0
also that "wait" you put in is not necessary as the regening thing is at the end of the function, and thats when the ship stops sinking. MradmannMvip 50 — 5y
Ad

Answer this question