RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"Make all of the conveyor belt scripts move at the speed of 45"
-- server script to set conveyor belt speed local conveyors = game.Workspace:WaitForChild("ConveyorBelts") -- Assuming all conveyor belts are under a model named "ConveyorBelts" local speed = 45 -- Speed of the conveyor belts for _, conveyor in pairs(conveyors:GetChildren()) do if conveyor:IsA("BasePart") and conveyor:FindFirstChild("Velocity") then conveyor.Velocity = conveyor.CFrame.lookVector * speed end end