RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"Create a realistic IGBT VVVF Inverter train sound"
-- server script local sound = Instance.new("Sound") sound.Name = "TrainSound" sound.SoundId = "rbxassetid://YourSoundIDHere" sound.Parent = game.Workspace local train = game.Workspace.Train local function onTrainMove(position) sound.Volume = 0.3 sound.PlaybackSpeed = 0.5 sound.Pitch = 0.5 sound.TimePosition = 0 sound:Play() end train.Moved:Connect(onTrainMove)