|
| 22 Jan 2013 09:46 PM |
I want to edit a script where a player can press a key on his / her keyboard and activate the scripts. Like in Roblox's game when you press "Q" you open the leaderboard or in Apocalypse Rising where you press "Shift" to run.
Please help. |
|
|
| Report Abuse |
|
|
| |
|
| |
|
|
| 22 Jan 2013 10:58 PM |
| Go to the wiki, get the basis of the script started, and if it doesn't work bring it here and THEN we can help. But this is no better then saying "Write the script for me" |
|
|
| Report Abuse |
|
|
|
| 22 Jan 2013 11:36 PM |
Player = game.Players.LocalPlayer -- MAKE THIS A LOCALSCRIPT Mouse = Player:GetMouse() function open(key) key = key:lower() if key == "q" then --code end end
Mouse.KeyDown(open) script.Parent = game.PlayerGui
|
|
|
| Report Abuse |
|
|