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

How would I create custom animation?

Asked by 9 years ago

It seems I'm on a roll with questions today...

Anyways, I've hit another wall with this one. I'm trying to create a custom walking script for my character. However, it's not the normal robloxian character, it's a custom one that I made for my game. All I need really is how would I make it so that the character can actually walk. What functions would I need?

Once again, I've already started.

local plr = game.Players.LocalPlayer
local mouse = plr:GetMouse()
local walking = false
local running = false
local jumping = false
local idle = true

for i,v in pairs(game:GetService("ControllerService"):GetChildren()) do
    v:Destroy()
end

1 answer

Log in to vote
0
Answered by 9 years ago

You cant destroy a Service Services are important and make the games work like the ControllerService controls when animations are fired

0
This is invalid... You can actually destroy services such as controller services. It's on the roblox wiki. InfraredChasm 35 — 9y
Ad

Answer this question