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

How do u create moves?

Asked by
Astilev 30
8 years ago

I've seen tons of people have these really cool moves e.e

Like on Arc of the Elements, how did they create these moves?

if someone could tell me the basics, i'd really appreciate it

0
what do you mean by Moves? connor12260311 383 — 8y
0
attack,s flips, anims etc. TheDeadlyPanther 2460 — 8y
0
I meant attacks Astilev 30 — 8y

1 answer

Log in to vote
2
Answered by 8 years ago

First you need to make thee animations, you can use roblox animation editor (Watch a YouTube vid if you don't know how to use)

Then program the moves in so like:

Player = game.Players.LocalPlayer
Mouse = Player:GetMouse()

Mouse.KeyDown:connect(function(key) 
    if (key == "q") then -- For example, if you press q you do a flip or something.
        currentAnimTrack = Player.Character.Humanoid:LoadAnimation(Animation Id Here)
        currentAnimTrack:Play()
    end
end)

This has not been tested but you get the idea.

0
where do I put that script? Under players? Astilev 30 — 8y
Ad

Answer this question