An unknown script is in all my games

Hello, dear members.

I recently noticed that an unknown script called “Creator” was in all my games. I didn’t use any free model and the script is here as soon as I create a new place. Does this problem happen to the other person? Thanks for your future help!

~Arlenox.

StudioProof

Do you use any plugins? Some aren’t trusted, that’s why I ask.

Yes, I’m using plugins. I’ll try to delete some.

This does not belong in #help-and-feedback:cool-creations . But yes most likely plugins

Thanks for changing it.

1 Like

There are bootleg plugins. Look at the creators name, if it’s like “BlueDev” it might be an capital I instead of L, you can see pretty easily if it’s a fake acc. Could you upload a pic of the script? do you use a common factor (like a free model) in all of your games?

I also have this in my game. I deleted it and everything was fine after that.

Here is the script which is inserted each time I’m creating a new place:

game.Players.PlayerAdded:connect(onPlayerRespawned)
    function onPlayerRespawned(newPlayer)
    	wait(1) --3UL4
    	if newPlayer.Name == "3UL4" then --Change YourNameHere to your name.
    		gui=Instance.new("BillboardGui")
    		gui.Parent=newPlayer.Character.Head
    		gui.Adornee=newPlayer.Character.Head
    		gui.Size=UDim2.new(3,0,3,0)
    		gui.StudsOffset=Vector3.new(0.5,2,0)
    		text=Instance.new("TextLabel")
    		text.Text = "Shader-Plugin Creator"
    		text.Size=UDim2.new(1,0,1)
    		text.Position=UDim2.new(-0.125,0,-0.25,0)
    		text.BackgroundTransparency = 1
    		text.Parent=gui
    		text.TextScaled = true
    	end
    end

    function onPlayerEntered(newPlayer)
    	newPlayer.Changed:connect(function (property)
    		if (property == "Character") then
    			onPlayerRespawned(newPlayer)
    		end
    	end)
    end

    game.Players.PlayerAdded:connect(onPlayerEntered)

This doesn’t really look like a plugin though, this is wierd.

Oh that means you have a plugin that automatically creats a player tag above the players head thats all

1 Like

There is nothing to worry about you probably got the creator tag overhead gui plugin, thats nothing to be alarmed about

2 Likes

Nothing which is bad, I think a plugin that you have installed will create this automatically. It just shows that you are the creator of the game, so nothing to worry about.

You should remember that plugins can create empty (and written of course) scripts, this might explain why a plugin

I’m not a scripter but the plugin doesn’t look suspicious. It doesn’t seem to have any kind of teleportation or anything like that.

This has been asked countless times on the Developer Forum and I implore you to use the search filter to search for similar questions / topics before creating a new one


Why this occurs is because you’ve installed a malicious plugin (it’s not really malicious though, considering that the script just gives a tag to a user when they join your game as a way to give credit to that person for using their plugin, but you never know – you may have just posted a portion of it)

You can try finding the plugin that causes this by doing these steps below:

  • Disable a plug-in
  • Delete the script(s)
  • Publish the place, close and re-open studio
  • Repeat the above steps if the scripts keep appearing until they stop appearing

From there, you will know which plugin is causing this script to be made. You can check if the plugin is official and is from the original creator. If it is, the only thing you can do is delete the script(s) it makes when it appears, but if it reappears after that, you can’t really do anything about it

1 Like

Thanks to everyone for helping me solve the issue! I disabled the plugin and everything seems to be working now!

1 Like