trolman5678

rc7 script?

Oct 22nd, 2016
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.96 KB | None | 0 0
  1. local P = game.Players.LocalPlayer.Character.Humanoid
  2. P.JumpPower = 150
  3. P.WalkSpeed = 100
  4. P.MaxHealth = 4000
  5. P.Health = 4000
  6. --P.Parent.Name = "zombieslayerwtf"
  7. local P = game.Players.LocalPlayer.Character
  8. for i,v in pairs(P:GetChildren()) do
  9. if v:IsA("Part") then
  10. v.Transparency = 1
  11. end
  12. end
  13. ------------------------------------
  14. Fog
  15. ------------------------------------
  16. game.Lighting.FogEnd = 0
  17. ------------------------------------
  18. Server chat
  19. ------------------------------------
  20. for i,v in pairs(game.Players:GetChildren()) do
  21. game.Chat:Chat(v.Character.Head, "Spooky", 2)
  22. end
  23. ------------------------------------
  24. Freeze- On
  25. ------------------------------------
  26. p= game.Players:GetChildren()
  27. for i= 1, #p do
  28. if p[i]~= "shanethe13" then
  29. p[i].Character.Torso.Anchored = true
  30. end
  31. end
  32. ------------------------------------
  33. Freeze- Off
  34. ------------------------------------
  35. p= game.Players:GetChildren()
  36. for i= 1, #p do
  37. if p[i]~= "shanethe13" then
  38. p[i].Character.Torso.Anchored = false
  39. end
  40. end
  41. ------------------------------------
  42. Very Fun Script
  43. ------------------------------------
  44. p= game.Players:GetChildren()
  45. for i= 1, #p do
  46. b = Instance.new("BodyForce")
  47. b.Parent = p[i].Character.Torso
  48. b.force = Vector3.new(0,10000,0)
  49. end
  50. ------------------------------------
  51. Black Hole
  52. ------------------------------------
  53. p= game.Players:GetChildren()
  54. for i= 1, #p do
  55. if p[i].Name ~= "shanethe13" then
  56. b = Instance.new("BodyPosition") b.Parent = p[i].Character.Torso b.maxForce = Vector3.new(6000000,60000000,60000000)
  57. b.position = Vector3.new(100,10,0)
  58. end
  59. end
  60. ------------------------------------
  61. Invisible All
  62. ------------------------------------
  63. c= game.Players:GetChildren()
  64. for i= 1, #c do
  65. p= c[i].Character:GetChildren()
  66. for i= 1, #p do
  67. if p[i].className == "Part" then
  68. p[i].Transparency = 1
  69. end
  70. end
  71. end
  72. ------------------------------------
  73. Freeze All
  74. ------------------------------------
  75. p= game.Players:GetChildren()
  76. for i= 1, #p do
  77. if p[i]~= "Lollypop647" then
  78. p[i].Character.Torso.Anchored = true
  79. end
  80. end
  81. ------------------------------------
  82. Visible All
  83. ------------------------------------
  84. c= game.Players:GetChildren()
  85. for i= 1, #c do
  86. p= c[i].Character:GetChildren()
  87. for i= 1, #p do
  88. if p[i].className == "Part" then
  89. p[i].Transparency = 0
  90. end
  91. end
  92. end
  93. ------------------------------------
  94. Thaw All
  95. ------------------------------------
  96. p= game.Players:GetChildren()
  97. for i= 1, #p do
  98. if p[i]~= "Lollypop47" then
  99. p[i].Character.Torso.Anchored = false
  100. end
  101. end
  102. ------------------------------------
  103. Time
  104. ------------------------------------
  105. game.Lighting.TimeOfDay = "00:00:00"
  106. ------------------------------------
  107. Size [May Cause Death] (Can be a kill script)
  108. ------------------------------------
  109. L = game.Players.xMeadow.Character
  110. L.Torso.Size = Vector3.new(100,100,100)
  111. L.Head.Size = Vector3.new(50,50,50)
  112. L.Head.Mesh:remove()
Add Comment
Please, Sign In to add comment