Answered by
5 years ago Edited 5 years ago
Hello!
There are a few problems with your script. First off, you never parented the animation! You created it, but never gave it a parent.
Second, this script would cause immense lag because every time a player presses "r" it creates a new Animation. Which is just not needed. You can solve your issue by doing this,
01 | local player = game.ReplicatedStorage.Arms |
02 | local User = game:GetService( "Players" ).LocalPlayer |
03 | repeat wait() until User.CharacterAdded |
04 | if User.Character:FindFirstChild( "WhateverYouNameTheAnimation" ) = = nil then |
05 | local anim = Instance.new( "Animation" ) |
06 | anim.AnimationId = "rbxassetid//:noseeslol" |
07 | anim.Name = "WhateverYouWantToName" |
08 | anim.Parent = User.Character |
11 | local function KeyPress (input, gameProcessed) |
12 | if input.KeyCode = = Enum.KeyCode.R then |
13 | local playAnim = humanoid:LoadAnimation(anim) |
18 | local UIS = game:GetService( "UserInputService" ) |
20 | UIS.InputBegan:Connect(KeyPress) |
This should work! If there are any errors then let me know! Happy scripting!
Be sure to upvote if this works and mark as solution!