NMM

CriminalityINFStamina

NMM
Jul 6th, 2021
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.18 KB | None | 0 0
  1. --script made by streelian , who would want to put their name on this shit anyways
  2.  
  3. local ragdoll = game.ReplicatedStorage.CharStats[game.Players.LocalPlayer.Name].RagdollTime.SRagdolled
  4. ragdoll.Changed:Connect(function()
  5. ragdoll.Value = false
  6. print("Nope, you aren't going to ragdoll...")
  7. end)
  8.  
  9. local Downed = game.ReplicatedStorage.CharStats[game.Players.LocalPlayer.Name].Downed
  10. Downed.Changed:Connect(function()
  11. Downed.Value = false
  12. print("I've resurrected you...")
  13. end)
  14.  
  15. local Sprinting = game:GetService("ReplicatedStorage").CharStats[game.Players.LocalPlayer.Name].Sprinting
  16. Sprinting.Changed:Connect(function()
  17. Sprinting.Value = false
  18. print("I'm fast as fuck boy...")
  19. end)
  20.  
  21.  
  22. local RagdollTime = game.ReplicatedStorage.CharStats[game.Players.LocalPlayer.Name].RagdollTime
  23. RagdollTime.Changed:Connect(function()
  24. RagdollTime.Value = 0
  25. print("Nope, you aren't going to ragdoll...")
  26. end)
  27.  
  28.  
  29. local HealthValueHead = game:GetService("ReplicatedStorage").CharStats[game.Players.LocalPlayer.Name].HealthValues.Head
  30. local HealthValueRightArm = game:GetService("ReplicatedStorage").CharStats[game.Players.LocalPlayer.Name].HealthValues["Right Arm"]
  31. local HelathValueLeftArm = game:GetService("ReplicatedStorage").CharStats[game.Players.LocalPlayer.Name].HealthValues["Left Arm"]
  32. local HealthValueLeftLeg = game:GetService("ReplicatedStorage").CharStats[game.Players.LocalPlayer.Name].HealthValues["Left Leg"]
  33. local HealthValueRightLeg = game:GetService("ReplicatedStorage").CharStats[game.Players.LocalPlayer.Name].HealthValues["Right Leg"]
  34.  
  35. HealthValueHead.Changed:Connect(function()
  36. HealthValueHead.Value = 100
  37. print("Health of Head is 100...")
  38. end)
  39. HealthValueRightArm.Changed:Connect(function()
  40. HealthValueRightArm.Value = 100
  41. print("Health of RightArm is 100...")
  42. end)
  43.  
  44. HealthValueLeftArm.Changed:Connect(function()
  45. HealthValueLeftArm.Value = 100
  46. print("Health of LeftArm is 100...")
  47. end)
  48.  
  49. HealthValueLeftLeg.Changed:Connect(function()
  50. HealthValueLeftLeg.Value = 100
  51. print("Health of LeftLeg is 100...")
  52. end)
  53.  
  54. HealthValueRightLeg.Changed:Connect(function()
  55. HealthValueRightLeg.Value = 100
  56. print("Health of RightLeg is 100...")
  57. end)
Add Comment
Please, Sign In to add comment