Advertisement
xDavid673x

FePP

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