generic image
Processing...
  • Games
  • Catalog
  • Develop
  • Robux
  • Search in Players
  • Search in Games
  • Search in Catalog
  • Search in Groups
  • Search in Library
  • Log In
  • Sign Up
  • Games
  • Catalog
  • Develop
  • Robux
   
ROBLOX Forum » Game Creation and Development » Scripters
Home Search
 

Re: Please Help!!

Previous Thread :: Next Thread 
Overstrand is not online. Overstrand
Joined: 05 Apr 2012
Total Posts: 2862
08 Apr 2016 12:50 AM
So I know what animations are...but how do you implement them onto your character? Like I have a plugin that makes animations and I can upload those animations, but what do I do from there? What am I able to do with them?
Report Abuse
AdvancedObjects is not online. AdvancedObjects
Joined: 11 Dec 2012
Total Posts: 3354
08 Apr 2016 02:04 AM
humanoid:LoadAnimation()



Report Abuse
Ueskay is not online. Ueskay
Joined: 20 Jun 2014
Total Posts: 824
08 Apr 2016 03:21 AM
Here, i ripped this one from the wiki, it might help

game.Players.PlayerAdded:connect(function(player)
while not player.Character do wait() end
local character = player.Character
local animateScript = character.Animate

-- Create instance for new animation
local newFallingAnimation = Instance.new("Animation")
newFallingAnimation.Name = "FallAnim2"
newFallingAnimation.AnimationId = 'http://www.roblox.com/asset/?id=165167632'
newFallingAnimation.Parent = animateScript.fall

-- Give new animation a Weight
local newFallingWeight = Instance.new("NumberValue")
newFallingWeight.Name = "Weight"
newFallingWeight.Value = 1
newFallingWeight.Parent = newFallingAnimation

-- Give old animation a Weight as well
local oldFallingWeight = Instance.new("NumberValue")
oldFallingWeight.Name = "Weight"
oldFallingWeight.Value = 4
oldFallingWeight.Parent = animateScript.fall.FallAnim
end)


game.Workspace.Yourmama:Destroy()
Report Abuse
HexaDecival is not online. HexaDecival
Joined: 13 Dec 2015
Total Posts: 144
08 Apr 2016 04:02 AM
I don't have too much experience with roblox anim plugin as I use CFrame for animating but I think this is how u do it

1. Make an animcontroller and put the ID of it to ur anim's id
2. Do something like this to play it:

--define local plyr and character I'm lazy
Local anim = character.Humanoid:loadAnim(Animcontroller)
anim:Play()

Animcontroller should be the 1 u made in step 1

also soz for clumsy writing I'm on phone
Report Abuse
Previous Thread :: Next Thread 
Page 1 of 1
 
 
ROBLOX Forum » Game Creation and Development » Scripters
   
 
   
  • About Us
  • Jobs
  • Blog
  • Parents
  • Help
  • Terms
  • Privacy

©2017 Roblox Corporation. Roblox, the Roblox logo, Robux, Bloxy, and Powering Imagination are among our registered and unregistered trademarks in the U.S. and other countries.



Progress
Starting Roblox...
Connecting to Players...
R R

Roblox is now loading. Get ready to play!

R R

You're moments away from getting into the game!

Click here for help

Check Remember my choice and click Launch Application in the dialog box above to join games faster in the future!

Gameplay sponsored by:
Loading 0% - Starting game...
Get more with Builders Club! Join Builders Club
Choose Your Avatar
I have an account
generic image