Hey, I’m currently trying to make an alpine slide like game on roblox, but I got to the part with the lever and it wont do ANYTHING! The print works too!
Code:
script.Parent.Triggered:Connect(function(plr)
if script.Parent.Parent.Parent.Seat.Occupant ~= nil then
print(Vector3.new(5000,5000,5000) * script.Parent.Parent.Parent.Seat.CFrame.LookVector)
script.Parent.Enabled = false
script.Parent.Parent.Parent.MovePart:ApplyImpulse(Vector3.new(50000,50000,50000) * script.Parent.Parent.Parent.Seat.CFrame.LookVector)
wait(script.Parent.Delay.Value)
script.Parent.Enabled = true
end
end)
Explorer SS:
I just want the cart to move forward in the direction it’s facing, PLEASE HELP!