Advertisement
xDavid673x

Fe PP

Aug 10th, 2022
714
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.95 KB | None | 0 0
  1. -- ORPLAYZ SHOWCASED THIS SCRIPT, ANYBODY WHO COPIES WITHOUT CREDIT OR PERMISSION WILL BE COPYRIGHTED (LICENCE LMT.197)
  2. -- SUBSCRIBE TO ORPLAYZ: https://www.youtube.com/channel/UC1UwUVxrjM2Sb4duUoR6zfA?sub_confirmation=1
  3.  
  4.  
  5.  
  6.  
  7.  
  8. --netless:
  9.  
  10. for i,v in next, game:GetService("Players").LocalPlayer.Character:GetDescendants() do
  11. if v:IsA("BasePart") and v.Name ~="HumanoidRootPart" then
  12. game:GetService("RunService").Heartbeat:connect(function()
  13. v.Velocity = Vector3.new(0,35,0)
  14. wait(0.5)
  15. end)
  16. end
  17. end
  18.  
  19. game:GetService("StarterGui"):SetCore("SendNotification", {
  20.     Title = "Notification";
  21.     Text = "Netless activated";
  22.     Icon = "rbxthumb://type=Asset&id=5107182114&w=150&h=150"})
  23. Duration = 16;
  24.  
  25. --real script now:
  26.  
  27.  
  28. local plr = game.Players.LocalPlayer
  29. game:GetService("RunService").Stepped:Connect(function()
  30.    setsimulationradius(9e9,9e9)
  31.    plr.ReplicationFocus = workspace
  32.    settings().Physics.AllowSleep = false
  33. end)
  34.  
  35. local runservice=game:service"RunService";
  36. local player=game:service"Players"["LocalPlayer"];
  37. local character=player["Character"];
  38. local blacklisted="Head Torso HumanoidRootPart";
  39. local limbs={};
  40.  
  41. character["Humanoid"].HipHeight=-0.5;
  42. --character["Head"]:FindFirstChildOfClass"SpecialMesh":Destroy();
  43.  
  44. for i,v in next,character:children() do
  45.     if (v.ClassName=="Part") and not blacklisted:find(v.Name) then
  46.         v:BreakJoints();
  47.         limbs[v.Name]=v;
  48.     end
  49. end
  50.  
  51. while runservice["Heartbeat"]:Wait() do
  52.     limbs["Left Leg"].CFrame=character["HumanoidRootPart"].CFrame*CFrame.new(-0,-1,-0.5) * CFrame.Angles(math.rad(0), 0, 300);
  53.     limbs["Right Leg"].CFrame=character["HumanoidRootPart"].CFrame*CFrame.new(-0,-1.5,-0.5) * CFrame.Angles(math.rad(0), 0, 300);
  54.     limbs["Left Arm"].CFrame=character["Left Leg"].CFrame*CFrame.new(-0.5,-0,-2.5) * CFrame.Angles(math.rad(0), 300, 300);
  55.     limbs["Right Arm"].CFrame=character["Right Leg"].CFrame*CFrame.new(-1,-0,-0.5) * CFrame.Angles(math.rad(0), 300, 300);
  56. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement