Make other players invisible button

I need help on making a script for when players click on a button on their screen, it will make other players invisible and when you want to disable that, you would be able to see them again. I already made the button but I need help on the script.

1 Like

So, can you identify the name of the ScreenGui that the button is located on, and the name of the button as well?

1 Like

The position for the button is {0.818, 0},{0.851, 0}. That is the frame. The name is Invisible Button

1 Like

ok, so I’m trying to write this from my head; if there are any issues you should be able to fix them yourself since this is not a script request site:

local activated = false

script.Parent.MouseButton1Click:Connect(function()
	if activated == false then
    	activated = true
    	for i,v in pairs(game.Players:GetChildren()) do
    		for it,vt in pairs(v:GetChildren()) do
    			if vt:IsA("MeshPart") then
    				if vt.Transparency <= 0 then
    					vt.Transparency = 1
    				end
    			end
    		end)
    	end
    else
    	activated = false
    	for i,v in pairs(game.Players:GetChildren()) do
    		for it,vt in pairs(v:GetChildren()) do
    			if vt:IsA("MeshPart") then
    				if vt.Transparency >= 1 then
    					vt.Transparency = 0
    				end
    			end
    		end)
    	end
    end
end)
1 Like

Sorry about that but thank you. :heart:

1 Like

Hmm. if you want all of the players to turn invisible then you just need to get all of the player’s character and then set all of the part, decals and particle stuff invisible.

local Button = script.Parent -- Button right here
local SetInvisible = false
local GetInvisibleTable = {}

Button.MouseButton1Click:Connect(function()
	if not SetInvisible then
		SetInvisible = true
		for _,Player in pairs(game.Players:GetPlayers()) do
			if Player.Character and Player ~= game.Players.LocalPlayer then -- Get all players except yourself.
				for _,Content in pairs(Player.Character:GetDescendants()) do
					if (Content:IsA("BasePart") or Content:IsA("Decal")) and Content.Transparency < 1 then -- Check for the invisible part that isn't already is invisible
						print(Content.Transparency)
						Content.Transparency = 1 -- Transparency
						table.insert(GetInvisibleTable, Content) -- Add the parts that turn invisible into the table so we can change it back later on
					elseif Content:IsA("ParticleEmitter") or Content:IsA("Fire") then -- These two are commonly used in accessories
						Content.Enabled = false -- Turn it off
						table.insert(GetInvisibleTable, Content)
					end
				end
			end
		end
	else
		SetInvisible = false
		for _,Content in pairs(GetInvisibleTable) do
			if Content:IsA("BasePart") or Content:IsA("Decal") then
				Content.Transparency = 0
			elseif Content:IsA("ParticleEmitter") or Content:IsA("Fire") then
				Content.Enabled = true
			end
		end
		GetInvisibleTable = {} -- Reset table
	end
end)

I found this in one of my game place a while ago and I did a small editing to it. Thought it might be useful to you since I don’t use this anymore. Oh and like @Hello1502HD said, I encouraged you to learn more about roblox scripting since it is a lot easier that you think. :smile:

Oh and sorry. This should be done around 20 minutes ago but new studio update is a bit dumb so the script editor for mac got a pretty big pause around 1-2 seconds.

3 Likes

Why are you publishing a script? I’ve already made one…

2 Likes

No problem. Just ask me when there are any issues

1 Like

I forgot to mention, that this is a LocalScript in the button. @chrissified

This one is more optimised and detect particles and doesn’t even detect the part that is already invisible. I found it while looking through some of the old games I got and thought that it might be useful to him. I can remove the code I sent if you wish.

No, I was just wondering, bruh!

Thank you so much it worked! :heart: