The text below is selected, press Ctrl+C to copy to your clipboard. (⌘+C on Mac) No line numbers will be copied.
Guest
Fe Pyramid script pastebin roblox
By Fe Pyramid on 2024-09-22 08:00 am | Syntax: LUA | Views: 26



New Script | Raw | Show/Hide line no. | Copy text to clipboard
  1. local plr = game.Players.LocalPlayer
  2. game:GetService("RunService").Stepped:Connect(function()
  3.    setsimulationradius(9e9,9e9)
  4.    plr.ReplicationFocus = workspace
  5.    settings().Physics.AllowSleep = false
  6. end)
  7.  
  8. local runservice=game:service"RunService";
  9. local player=game:service"Players"["LocalPlayer"];
  10. local character=player["Character"];
  11. local blacklisted="Head Torso HumanoidRootPart";
  12. local limbs={};
  13.  
  14. character["Humanoid"].HipHeight=2;
  15. --character["Head"]:FindFirstChildOfClass"SpecialMesh":Destroy();
  16.  
  17. for i,v in next,character:children() do
  18.     if (v.ClassName=="Part") and not blacklisted:find(v.Name) then
  19.         v:BreakJoints();
  20.         limbs[v.Name]=v;
  21.     end
  22. end
  23.  
  24. while runservice["Heartbeat"]:Wait() do
  25.     limbs["Left Leg"].CFrame=character["HumanoidRootPart"].CFrame*CFrame.new(-1,-2,0);
  26.     limbs["Right Leg"].CFrame=character["HumanoidRootPart"].CFrame*CFrame.new(1,-2,0);
  27.     limbs["Left Arm"].CFrame=character["Left Leg"].CFrame*CFrame.new(-1,-2,0);
  28.     limbs["Right Arm"].CFrame=character["Right Leg"].CFrame*CFrame.new(1,-2,0);
  29. end



  • Recent Roblox Scripts