|
| 04 Dec 2013 09:15 PM |
Hello again! I was wondering how I could override/remove the functions that trigger the hotkeys in games such as I, O, Backspace, etc.
Also I was wondering how I could implement this: game.StarterGui:SetCoreGuiEnabled(4, false) to remove the coregui. |
|
|
| Report Abuse |
|
|
|
| 04 Dec 2013 09:21 PM |
Localscript in startergui: game.StarterGui:SetCoreGuiEnabled(4, false) Removing backspace localscript in startergui: while true do wait(0.01) if game.Players.LocalPlayer.Character ~= nil then if game.Players.LocalPlayer.Character.Humanoid.Jump == true then game.Players.LocalPlayer.Character.Humanoid.Jump = false end end end |
|
|
| Report Abuse |
|
|
|
| 04 Dec 2013 09:22 PM |
| @me above, I meant disabling spacebar |
|
|
| Report Abuse |
|
|
|
| 04 Dec 2013 09:22 PM |
No idea how to unlock all of the camera keys. You can get the number keys by turning off the backpack gui.
To implement that command, just put that in a local script and it should work. |
|
|
| Report Abuse |
|
|