Advertisement
ExecutorForALLdomain

Make your script that manipulate part more smoother

Oct 27th, 2024
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.55 KB | None | 0 0
  1. local lp=game.Players.LocalPlayer
  2.  
  3. local function FeBypass()
  4.    for i,v in next, game:FindService("Players"):GetPlayers() do
  5.        if v~= lp then
  6.            coroutine.wrap(function()
  7.            while task.wait() do
  8.            v.MaximumSimulationRadius = 0.1
  9.            v.SimulationRadius = 0.1
  10.         end;end)();end
  11.     end
  12. end
  13.  
  14. FeBypass()
  15.  
  16.  
  17. local v = lp
  18. coroutine.wrap(function()
  19.            while task.wait() do
  20.            v.MaximumSimulationRadius = math.huge
  21.            v.SimulationRadius = math.huge
  22.     end;end)()
  23.  
  24.     print("loaded")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement