of     1   

Kewbrik
#228356957Sunday, December 03, 2017 1:16 AM GMT

I'm unsure if I did this correctly or not may I get some assistance? local player = game.Players.LocalPlayer local userInputService = game:GetService("UserInputService") local runService = game:GetService("RunService") repeat wait() until player.Character.Humanoid local humanoid = player.Character.Humanoid local anim = Instance.new("Animation") anim.AnimationId = ########################################### userInputService.InputBegan:connect(function(input, processed) if input.UserInputType == Enum.UserInputType.Gamepad1 then do input.KeyCode = Enum.KeyCode.ButtonA then playAnim = humanoid:LoadAnimation(anim) playAnim:Play()

    of     1