Random Developer Product Pop-Up

just copy and paste the line of code in to the find all replace all tab and then click replace all with nothing in the replace box like this:

1 Like

Yep, so that is trying to require(5722872031) which is this (1) MeshLoader - Roblox

=string.reverse("\101\114\105\117\113\101\114") is require. However, sting is a syntax error. Anyway, that asset should be removed from your project, and you should definetly disable any unknown plug-ins.

1 Like

I have done that, now a question. Are there any like protective plugins?

yep. there’s some virus detection plugins. i personally don’t use any, but i searched for some and here’s one
https://create.roblox.com/marketplace/asset/7190436853/ZLOCK-Anti-Virus

1 Like

Thank you! By the way, I have replaced “RoSync Loader]] getfenv()string.reverse("\101\114\105\117\113\101\114)” with nothing. So do I just let the “–[[” let be or?

You can, when something has -- before it is a comment and doesn’t really do anything

1 Like

Alright, thank you all for your help! This topic is now done.

1 Like

I know the topic is closed but I just wanted to let you know that the --[[ is used to make comments, so it doesn’t affect anything.

1 Like

I know that -- means comment but I wasn´t sure because I thought the backdoor was still there, even though thanks for your help!

I’d just like to make one clarification, both of the replies to your question were wrong.

getfenv()

is used to get the function environment, hence the name “get f env”, this isn’t always malicious it’s just away for malicious code to be added and harder to notice due to most people solely looking for require()

getfenv()[string.reverse("\101\114\105\117\113\101\114")](yadayada)

is the same as using the roblox internal function

require(yadayada) 

usually linked to requiring external modules.

would highly recommend a look at the api page

1 Like

Thank you, will look at it tomorrow since it´s now night to me!

1 Like

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.