About 14,900 results
Open links in new tab
  1. How to make an Invincibility script - DevForum | Roblox

    Jan 9, 2024 · I am making an obby and players can buy an invincibility power-up that stops them from dying on kill parts. I tried giving players a forcefield and changing their max health and health to math.huge but neither of those have worked. part.Touched:Connect(function(hit) local human = hit.Parent:FindFirstChild("Humanoid") if human ~= nil then human.Health = 0 end end) This is …

  2. How to make player invincible - DevForum | Roblox

    Sep 23, 2019 · As the title suggest, I am making a debug menu and my first button is to make the player invulnerable to all sources of damage. I have tried giving the player a force field, however when I place a part that takes away the players health it still damages and kills the player. Additionally I have tried simply setting the player health really big and constantly restoring the …

  3. How can I make a player invincible for (example) 5 seconds

    Dec 21, 2020 · Hello! So in a game, I’m trying to make it so that you don’t have a forcefield, but when you spawn you’re still invincible for (example) 5 seconds. I have already found a topic like this, but it wasn’t very clear and doesn’t seem to be the same thing. Any help would be …

  4. Best way to make invincibility mode - DevForum | Roblox

    Jan 19, 2024 · I want to make an easy mode gamepass where the kill parts wont kill you if you have it on and I don’t know what the best way to do this would be. can someone explain to me how it would work or how i would code that?

  5. Making players invincible - Help and Feedback / Scripting ... - Roblox

    Mar 6, 2024 · So basically, I want to make my players invincible in the lobby but not when they go into the game. Currently I set a forcefield parent to the character when the player joins the game, using a player added event. The issue is, when they go into the arena, I destroy the forcefield, the players have 5 lives basically but when they die for the first time, I have a character removing …

  6. How do you create invincibility frames? - DevForum | Roblox

    May 13, 2021 · How do games like Your Bizarre Adventure make iframes? I am trying to make iframes for a fighting game I am making and I would like to know what the best solution that is efficient and not very exploitable. How could I do this?

  7. Invincible Zombie Script Won't Die! - Scripting Support - Roblox

    5 days ago · It’s almost easter and this script thinks its Halloween! Script is running even though it destroys its parent, destroys itself, and disables itself. Do I need to set its health to 0 too? I prefer errors not to appear regardless of whether they affect gameplay or not. It’s a script under a ScreenGUI which is supposed to self-destruct by destroying the ScreenGUI if the player’s …

  8. Cloning enemy from rep storage makes it invincible and unable

    Dec 28, 2024 · Okay so ive removed that line from the script and you know what that causes…? it causes attempt to index nil with clone: which is caused when roblox remote event cant pass over something from serverstorage onto the client… ;-;

  9. Player somehow becomes invincible - Scripting Support - Roblox

    Feb 13, 2024 · Basically this is a counter move from my pvp game, and this script checks when the plr gets dmg when in counter move. The issue is when the skill is activated, the plr became invincible to all sort of dmg (which uses touched event to trigger the damaging) What solutions have you tried so far? Did you look for solutions on the Developer Hub? I tried looking for …

  10. Invisibility tool - Help and Feedback / Scripting Support - Roblox

    Sep 14, 2023 · Looks like you are over complicating things, I would just put a server script inside the tool with something like this local tool = script.Parent local character = nil local invisible = false local function toggle (bool) invisible = (bool == nil and not invisible) or …

Refresh