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

French railway signalling help. Please?

Asked by 8 years ago

I am trying to replicate TVM-430 (Transmission-voie-Machine) cab signalling used on High Speed 1 (CTRL) UK line and on french high speed lines. Instead of signals it has signs after each passage, sensors it either changes the screen decal depending on the speed limit or signal ahead. Well i think i scripted it well but it doesnt switch the screen in NXTransit Class 153. No matter any way i edit it, it is enabled also. The model is in my profile. Here's the script:

print("WAZZAP")
local debounce = false
function onTouched(part)
    if debounce == false then
    if part.Name == "TVMMagnet" then --Change this to the name of the correct part that trips the sensor
        debounce = true
        script.Parent.Parent.Train.Train1.TVMonitor.Decal = "http://www.roblox.com/asset/?id=422347420"
        wait(1)
        debounce = false
        end
    end
end

script.Parent.Touched:connect(onTouched)

The magnet is welded to the train and it doesnt fall and moves good. The URL isnt below the script.parent.parent.train.train1.tvmonitor.decal =, Just size. NXTransit is a experimental train, i originally made it for use on StuffLoveThings's train that is a Class 153 by VTPendo. Please help anybody, nothing works?

0
UK uses miles while Europe including France uses kilometers. The only use of kilometers on railways in UK is High Speed 1 from St Pancras to Ebbsfleet International or junction to Ashford. NewBuildmini 5 — 8y
0
Nice code block. User#6546 35 — 8y
0
Thanks, i need an answer NewBuildmini 5 — 8y
0
A code block would help discern the issue. You still failed to use a code block. I'm not putting any effort into helping somebody who won't make their stuff readable. User#6546 35 — 8y
View all comments (2 more)
0
It is just messed up here NewBuildmini 5 — 8y
0
Fixed NewBuildmini 5 — 8y

Answer this question