Hey!!! I have a problem with my script, the BodyAngularVelocity does not increase, the figures remain static (i.e. a 0.1). Why?
print("Go")
local bav = script.Parent.Cube.Cube.BodyAngularVelocity
bav.angularvelocity = Vector3.new(0.1,0.1,0.1)
script.Parent.TimeValue.Value = 5
while true do
local x = math.random(0.1,0.5)
local y = math.random(0.1,0.5)
local z = math.random(0.1,0.5)
bav.angularvelocity = bav.angularvelocity + Vector3.new(x,y,z)
wait(1)
script.Parent.TimeValue.Value = script.Parent.TimeValue.Value - 0.7
end
I believe the problem is the capitalization, as the AngularVelocity property is capitalized on the A and the V. Fixing the capitalization might fix it, since i dont see any other errors.