You can look up on YouTube: “Fling Script FE” and you will find it. It’s incredible, afaik no one has been able to fix it, and every R6 game seems to be affected.
If anyone could help with fixing this, it would be highly appreciated.
I’m not sharing the scripts or the source here, find it yourself on YT.
I have looked at the scripts used to pull this off. It looks like the exploiters are overriding their own character appearance to get that cube frame and using render stepped to make it spin. Then they just maneuver to the other players to fling them. So there’s a couple of things you can do.
Put all players in their own collision group and set it so that they cannot collide with each other.
Periodically check various parts of their character for collisions being off. If they are, then they are cheating and you can take whatever action that you deem appropriate for your game.
Roblox has facilities in game which you can use to get the character’s appearance to check against. If the character is actually different than what Roblox says it is, then you can either force the character to wear their Roblox avatar specification, force them to wear a default specification, or kick/ban them.
I haven’t tried any of this yet, but you can write code around these methods:
This is a multistep procedure that removes the character and then reloads it with the proper visual assets.
2.1 Use Players:RemoveCharacter to remove the offending model from the game.
2.2 Then use Players:LoadCharacterWithHumanoidDescription to force loading the character from the previously saved HumanoidDescription.
Or, instead of doing all this, you can just kick/ban them when you detect it. I should mention that this needs to be done server side so the exploiter can’t mess with it.
the dev api has a useful resource about this exact fix, and it happens to be one of the only scripts on the developer.roblox page that works out of the box
Yes what maelstorm was saying was to try and get the player’s humanoid description (outfit) and check if one of the items they are wearing (Which would be used to create the block). Then changed that item to something else.
Another way to detect this as it was mentioned in a different thread was to check if the HRP is spinning ridiculously fast. However, it’s probably best to check everything because a character can modify any part of their character because they have both physics control and network ownership. So if a part is too far from their HRP, and their health > 0, then they are most likely cheating.
Collision groups don’t seem to work, my game uses them to make players not collide with each other yet the exploit still flings anyways; it could be possible they may be able to change the collision group to make it happen.