Advertisement
PasteV2

Developer Console Scripts [ROBLOX]

Mar 30th, 2019
10,758
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 4.87 KB | None | 0 0
  1. Kill: game.Worksace.shiveringly.Humanoid.Health = 0
  2.  
  3. Kick: game.Players.shiveringly:Remove()
  4.  
  5. Infinite Health: game.Workspace.shiveringly.Humanoid.MaxHealth = math.huge
  6.  
  7. Kick all: p= game.Players:GetChildren()
  8. for i= 1, #p do
  9. p[i]:remove()
  10. end
  11.  
  12. Kill all: p= game.Players:GetChildren()
  13. for i = 1,#p do
  14. p[i].Character.Humanoid.
  15. MaxHealth = 0
  16. end
  17.  
  18.  
  19. no tools all: p= game.Players:GetChildren()
  20. for i = 1,#p do
  21. o = p[i].Backpack:GetChildren()
  22. for i = 1, #o do
  23. o[i]:remove()
  24. end
  25. end
  26.  
  27. Time: game.Lighting.TimeOfDay = "00:00:00"
  28.  
  29. Face remove: game.Workspace.shiveringly.Head.Face:remove()
  30.  
  31. Invisible Torso: game.Workspace.shiveringly.Humanoid.Torso.Transparency = 1
  32.  
  33. Walkspeed: game.Workspace.shiveringly.Humanoid.Walkspeed = 50
  34.  
  35. Invisible all: c= game.Players:GetChildren()
  36. for i= 1, #c do
  37. p= c[i].Character:GetChildren()
  38. for i= 1, #p do
  39. if p[i].className == "Part" then
  40. p[i].Transparency = 1
  41. end
  42. end
  43. end
  44.  
  45. Ghost  all: c= game.Players:GetChildren()
  46. for i= 1, #c do
  47. p= c[i].Character:GetChildren()
  48. for i= 1, #p do
  49. if p[i].className == "Part" then
  50. p[i].Transparency = 0.5
  51. end
  52. end
  53. end
  54.  
  55. Visible all: c= game.Players:GetChildren()
  56. for i= 1, #c do
  57. p= c[i].Character:GetChildren()
  58. for i= 1, #p do
  59. if p[i].className == "Part" then
  60. p[i].Transparency = 0
  61. end
  62. end
  63. end
  64.  
  65. Freeze all: p= game.Players:GetChildren()
  66. for i= 1, #p do
  67. if p[i]~= "shiveringly" then
  68. p[i].Character.Torso.Anchored = true
  69. end
  70. end
  71.  
  72. Thaw all: p= game.Players:GetChildren()
  73. for i= 1, #p do
  74. if p[i]~= "Lollypop47" then
  75. p[i].Character.Torso.Anchored = false
  76. end
  77. end
  78.  
  79. Freeze: game.Workspace.shiveringly.Torso.Anchored = true
  80.  
  81. Thaw: game.Workspace.shiveringly.Torso.Anchored = false
  82.  
  83. No life all: p= game.Players:GetChildren()
  84. for i= 1, #p do
  85. if p[i]~= "Lollypop47" then
  86. p[i].Character.Humanoid:Remove()
  87. end
  88. end
  89. end
  90.  
  91. No life: game.Workspace.shiveringly.Humanoid:remove()
  92.  
  93. Delete base: p= game.Workspace:GetChildren()
  94. for i= 1, #p do
  95. if p[i].className == "Part" then
  96. if p[i].Name ~= "shiveringly" then
  97. p[i]:remove()
  98. end
  99. end
  100. end
  101.  
  102. Server shutdown: game.Workspace.Parent:remove()
  103. end
  104.  
  105. Explosion: Instance.new("Explosion").Parent = game.Workspace.shiveringly.Torso
  106.  
  107. Fire: Instance.new("Fire").Parent = game.Workspace.shiveringly.Torso
  108.  
  109. Sparkles: Instance.new("Sparkles").Parent = game.Workspace.shiveringly.Torso                                                                                                                                        
  110.  
  111. Smoke: Instance.new("Smoke").Parent = game.Workspace.shiveringly.Torso
  112.  
  113. Message: local m = Instance.new("Message")
  114. m.Parent=game.Workspace
  115. m.Text = "Yay it worked!"
  116. wait(3)
  117. m:Remove()
  118.  
  119. Giant Charater: L = game.Players.shiveringly.Character
  120. L.Torso.Size = Vector3.new(100,100,100)
  121. L.Head.Size = Vector3.new(50,50,50)
  122. L.Head.Mesh:remove()
  123.  
  124. Teleport All To 1000 Studs High: p = game.Players:GetChildren()
  125. for i = 1,#p do
  126. p[i].Character.Torso.CFrame = CFrame.new(math.random(1,30),10000,math.random(1,30))
  127. end
  128.  
  129. Invisible Head: game.Workspace.shiveringly.Head.Transparency = 1
  130.  
  131. Invisible Head All: c = game.Players:GetChildren()
  132. for i = 1, #c do
  133. c[i].Character.Head.Transparency = 1
  134.  
  135. Genocide: while true do
  136. p= game.Players:GetChildren()
  137. for i= 1, #p do
  138. p[i].Character.Torso.Neck:remove()
  139. wait (0.1)
  140. end
  141. end
  142.  
  143. Mind Control: game.Players.shiveringly.Character = game.Players. .Character
  144.  
  145. They're the most common scripts you'll find decent scripter use.
  146.  
  147. The scripts below are the type of scripts that you use when you want anything from the catalog. However, there are certain things that you will not be able to get with those scripts (e.g: faces):
  148.  
  149. Orb: x = game:GetService("InsertService"):LoadAsset(41098024) x.Parent = game.Workspace x:makeJoints() x:moveTo(game.Players.shiveringly.Character.Head.Position)
  150.  
  151. Insert: x = game:GetService("InsertService"):LoadAsset(21001552) x.Parent = game.Workspace x:makeJoints() x:moveTo(game.Players.shiveringly.Character.Head.Position)
  152.  
  153. Jetpack: x = game:GetService("InsertService"):LoadAsset() x.Parent = game.Workspace x:makeJoints() x:moveTo(game.Players.shiveringly.Character.Head.Position)
  154.  
  155. Admin Brick: x = game:GetService("InsertService"):LoadAsset(57845331) x.Parent = game.Workspace x:makeJoints() x:moveTo(game.Players.shiveringly.Character.Head.Position)
  156.  
  157. Pokeball: x = game:GetService("InsertService"):LoadAsset(28224824) x.Parent = game.Workspace x:makeJoints() x:moveTo(game.Players.shiveringly.Character.Head.Position)
  158.  
  159. Eyeball:  x = game:GetService("InsertService"):LoadAsset(30103114) x.Parent = game.Workspace x:makeJoints() x:moveTo(game.Players.shiveringly.Character.Head.Position)
  160.  
  161. Above are just examples. You can get different things by changing the ID of the object. You put the ID in between the '(' and ')'.
  162.  
  163. NOTE: WHERE IT SAYS 'shiveringly' CHANGE IT TO YOUR NAME OR ELSE IT WON'T WORK.
  164.  
  165. That's all for now.
  166. Have fun scripting!
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement