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

Is there a way to use an animation in the game for free?

Asked by 10 years ago

Please, paying robux for an animation is boring.

3 answers

Log in to vote
1
Answered by 10 years ago

Well you can use :LoadAnimation or you can make your own. I will give you a frontflip and backflip localscript. Put it in your StarterGui(remember it's a localscript) press q for backflip and press e for frontflip:

while wait() do
    if game.Players.LocalPlayer.Character then
        break
    end
end
mp = game.Players.LocalPlayer
mpc = mp.Character
mouse = mp:GetMouse()

mouse.KeyDown:connect(function(key)
    if key == "q" then
        mpc.Torso.Anchored = true
        for i=1,5 do
            mpc.Torso.CFrame = mpc.Torso.CFrame * CFrame.new(0,i*2,i)
            if i<5 then
                mpc.Torso.CFrame = mpc.Torso.CFrame * CFrame.Angles(-(i-1),0,0)
            end
            wait(0.25)
        end
        mpc.Torso.Anchored = false
    elseif key == "e" then
        mpc.Torso.Anchored = true
        for i=1,5 do
            mpc.Torso.CFrame = mpc.Torso.CFrame * CFrame.new(0,i*2,-i)
            if i<5 then
                mpc.Torso.CFrame = mpc.Torso.CFrame * CFrame.Angles((i-1),0,0)
            end
            wait(0.25)
        end
        mpc.Torso.Anchored = false
    end
end)
0
reputation pl0x SilenceCore 25 — 10y
0
Works but the flip is not realistic at all. Kozero 120 — 10y
0
Roblox isn't realistic xD SilenceCore 25 — 10y
Ad
Log in to vote
0
Answered by
Maxomega3 106
10 years ago

There IS a way to do so, even before ROBLOX made the plugin.

There's a tutorial on the wiki

~Just remember that if someone answers your question you and that person will get reputation if you accept their answer. There should be a button for it near the voting on the answer. ~

Log in to vote
-1
Answered by 10 years ago

Insert an animation plugin for your game. Should work. You have to insert the plugin through studio.

0
I have the plugin. But to export an animation, it cost robux. StickMasterNinja2 0 — 10y
0
Oh. MUSHR0OM 0 — 10y
0
Do you know the way to upload animations without costing robux? StickMasterNinja2 0 — 10y
0
No. There is no way to do so. MUSHR0OM 0 — 10y

Answer this question