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

How do you replace default (jump, walk, run, roll, slide) with your custom animation you published?

Asked by
sho17 -15
7 years ago

Ok, so i tried to figure it out. I was using youtube on how to customize your jump. I made an animation, published it, and got the script. The script i put is down below Game.Player.PlayersAdded:connect(function(player) while not player.Character do wait ()end local character=player.Character local animateScript=character.Animate animateScript.fall.FallAnim.AnimationId="http://www.roblox.com/asset/7id=743991687" end)

ok so the http://www.roblox.com/asset/7id=743991687. This isnt my animation url, just using it as an example. When i go to my library, then animation, then click the animation i published and created, it should be like the url above, except the id should be something else. However, when i clicked on my animation the url was "https://www.roblox.com/library/743991687/Parkour-Front-Flip" I tried inserting this url except of the one above but it doesnt work. Please Help

0
Make sure to format Lua code in the editor with the Lua symbol o_Blyzo 12 — 7y
0
You can either replace the ids in the character or overwrite them by placing new content in the StarterCharacterScripts. User#5423 17 — 7y

1 answer

Log in to vote
0
Answered by
o_Blyzo 12
7 years ago

You don't use the entire url, as the Lua script won't recognise what this is. Instead, you need to copy and paste the ID part of the URL (the ID part is highlighted in bold. https://www.roblox.com/library/743991687/Parkour-Front-Flip)

Once you have copy pasted the ID into the correct place, make sure to add the two " "s and you should be done!

0
(if this answer helped you, please press the 'Answered' button below! Thanks) o_Blyzo 12 — 7y
0
Ok ill try it. THANKS XD sho17 -15 — 7y
Ad

Answer this question