realprayy Posted March 1, 2020 Posted March 1, 2020 Hey, can someone help me? I need a Godmode Script, that I cant lose health. I would be thanksful, greetz
LT.Steiner Posted July 31, 2020 Posted July 31, 2020 (edited) Use it for Java Client-Side => var GodMode = false; // This is your Variable var localPlayer = mp.players.local; /// Use F5 to Enable/Disable your mode mp.keys.bind(0x74, false, function() { GodMode = !GodMode; if (GodMode){ localPlayer.setInvincible(true); mp.gui.chat.push("God mod Enabled"); } else { localPlayer.setInvincible(false); mp.gui.chat.push("God mod disabled"); } }); 0x74 is Virtual Key Code for F5, visit KeyCode list and you are able to change it Virtual KeyCodes: https://docs.microsoft.com/en-us/windows/win32/inputdev/virtual-key-codes Edited August 7, 2020 by LT.Steiner
Recommended Posts