Advertisement
ROBLOX_SCRIPT_SHARE

CHAIR AND TABLE FE 2 SCRIPTS

Feb 13th, 2022
717
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.27 KB | None | 0 0
  1. --FE CHAIR--
  2.  
  3. local plr = game.Players.LocalPlayer
  4. game:GetService("RunService").Stepped:Connect(function()
  5. setsimulationradius(9e9,9e9)
  6. plr.ReplicationFocus = workspace
  7. settings().Physics.AllowSleep = false
  8. end)
  9.  
  10. local runservice=game:service"RunService";
  11. local player=game:service"Players"["LocalPlayer"];
  12. local character=player["Character"];
  13. character["Head"]:FindFirstChildOfClass"SpecialMesh":Destroy();
  14.  
  15. character["Humanoid"].HipHeight=0;
  16. character["Left Leg"]:BreakJoints();
  17. character["Right Leg"]:BreakJoints();
  18. character["Left Arm"]:BreakJoints();
  19. character["Right Arm"]:BreakJoints();
  20. while runservice["Heartbeat"]:Wait() do
  21. character["Left Leg"].CFrame=character["HumanoidRootPart"].CFrame*CFrame.new(0.5,-1.5,-0.5);
  22. character["Right Leg"].CFrame=character["HumanoidRootPart"].CFrame*CFrame.new(-0.5,-1.5,-0.5);
  23. character["Left Arm"].CFrame=character["HumanoidRootPart"].CFrame*CFrame.new(-0.5,-1.5,-1.5);
  24. character["Right Arm"].CFrame=character["HumanoidRootPart"].CFrame*CFrame.new(0.5,-1.5,-1.5);
  25. end
  26.  
  27. character["Head"]:FindFirstChildOfClass"SpecialMesh":Destroy();
  28. --FE TABLE--
  29.  
  30. --made by Spooky Dragon--
  31. local plr = game.Players.LocalPlayer
  32. game:GetService("RunService").Stepped:Connect(function()
  33. setsimulationradius(9e9,9e9)
  34. plr.ReplicationFocus = workspace
  35. settings().Physics.AllowSleep = false
  36. end)
  37. --- thank you to ou1z to the script above
  38. local runservice=game:service"RunService";
  39. local player=game:service"Players"["LocalPlayer"];
  40. local character=player["Character"];
  41. character["Head"]:FindFirstChildOfClass"SpecialMesh":Destroy();
  42.  
  43. character["Humanoid"].HipHeight=-2;
  44. character["Left Leg"]:BreakJoints();
  45. character["Right Leg"]:BreakJoints();
  46. character["Left Arm"]:BreakJoints();
  47. character["Right Arm"]:BreakJoints();
  48. while runservice["Heartbeat"]:Wait() do
  49. character["Left Leg"].CFrame=character["HumanoidRootPart"].CFrame*CFrame.new(-0.5,1.5,1.5) * CFrame.Angles(math.rad(90), 0, 0);
  50. character["Right Leg"].CFrame=character["HumanoidRootPart"].CFrame*CFrame.new(0.5,1.5,1.5) * CFrame.Angles(math.rad(90), 0, 0);
  51. character["Left Arm"].CFrame=character["HumanoidRootPart"].CFrame*CFrame.new(-0.5,0,2);
  52. character["Right Arm"].CFrame=character["HumanoidRootPart"].CFrame*CFrame.new(0.5,0,2);
  53. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement