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

How Can I Make it so you morph into monster by pressing Q?

Asked by 9 years ago

How can I make it so you can morph into a monster by pressing the Q button?

1 answer

Log in to vote
0
Answered by
Goulstem 8144 Badge of Merit Moderation Voter Administrator Community Moderator
9 years ago

Keydown event;

mouse = game.Players.LocalPlayer:GetMouse()

mouse.KeyDown:connect(function(key)
    if key:lower() == "q" then
        --Put morphing stuff here
    end
end)

I'm not gonna make a whole morphing process for you so you edit that in.

Hope I Helped

+1

Ad

Answer this question