somebody help

redhot69

amongus
hello
so i want to make when metal is hovering or with dashmode he can carry

addHook("PlayerThink", function(player)
if player.mo.skin == "metalsonic"
and player.mo.state == S_PLAY_FLOAT
and player.mo.state == S_PLAY_DASH then
player.pflags = $|PF_CANCARRY
end
end)
 
Here, try this instead :)

fixed:
addHook("PlayerThink", function(player)
    if player.mo.skin == "metalsonic" then
        if player.mo.state == S_PLAY_FLOAT or player.mo.state == S_PLAY_DASH then
            player.pflags = $|PF_CANCARRY
        end
    end
end)
 
okay
Here, try this instead :)

fixed:
addHook("PlayerThink", function(player)
    if player.mo.skin == "metalsonic" then
        if player.mo.state == S_PLAY_FLOAT or player.mo.state == S_PLAY_DASH then
            player.pflags = $|PF_CANCARRY
        end
    end
end)
Post automatically merged:

Here, try this instead :)

fixed:
addHook("PlayerThink", function(player)
    if player.mo.skin == "metalsonic" then
        if player.mo.state == S_PLAY_FLOAT or player.mo.state == S_PLAY_DASH then
            player.pflags = $|PF_CANCARRY
        end
    end
end)
it works but i cant test dash since the bot follows me
 
Last edited:

Who is viewing this thread (Total: 0, Members: 0, Guests: 0)

Back
Top