Gaimo Posted May 25, 2021 Share Posted May 25, 2021 local object = createObject(1265, 0,0,3) setElementVelocity(object, 0,0,0) wiki createObject Note: Dynamic objects do not automatically have physics applied to them. Use setElementVelocity(object, 0, 0, 0) to fix this. would it be a bug? Link to comment
Moderators Patrick Posted May 25, 2021 Moderators Share Posted May 25, 2021 Try it with a little delay. local object = createObject(1265, 0,0,3) setTimer(setElementVelocity, 100, 1, object, 0,0,0) 1 Link to comment
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now