I'm trying to make this game about a show called Buffy the vampire slayer, and I'm a beginner scripter and I'm trying to make a script that when pressing different keys on you're keyboard makes you do different fighting moves, but I have no Idea how to start it. What would I have to do?
You would use a script like this:
mouse = game.Players.LocalPlayer:GetMouse() function keyDown(key) key = key:lower() if key == "(key here)" then --What you want it to do end end mouse.KeyDown:connect(keyDown)