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

BodyForce Not Working! I hope this question is concise enough for this website?

Asked by 4 years ago

I'm just trying to get my "Car" moving with body force, here's the script

01local CarSpeed = 5
02local CarAmount = 1
03local CarCanMove = true
04local function spawncar()
05    local Car = game.ReplicatedStorage.Cars.Car
06        local TempCar = Car:Clone()
07        TempCar.Name = "TempCar"
08        TempCar.Parent = workspace
09    for x = 1, CarAmount, 1 do
10        TempCar:MoveTo(Vector3.new(-0.6, 980.178, -10.6))
11    end
12end
13 
14--[[local function movecar() DON'T MIND THIS PART
15    for x = 1, CarAmount, 1 do
View all 36 lines...

This is the script to just see if the car moves forward, but it's not working or moving, I doesn't have any error messages. But there is this error message which I think doesn't have to do with anything

ContentProvider:PreloadAsync() failed for rbxthumb://type=Asset&id=187790284&w=150&h=150

0
The reason I have the concise thing in the title is because I wasn't able to try anything else by the way Longjohnnn 28 — 4y
0
I guess we'll neve know Longjohnnn 28 — 4y

Answer this question