Advertisement
Guest User

testing bcs i'm new

a guest
Sep 15th, 2019
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.51 KB | None | 0 0
  1. local Tool = Instance.new("HopperBin", game.Players.LocalPlayer.Backpack)
  2. Tool.Name = "Detonater"
  3. local Mouse = game.Players.LocalPlayer:GetMouse()
  4.  
  5.  
  6. Mouse.Button1Down:connect(function()
  7. if Tool.Active == true then
  8. local explosion = Instance.new("Explosion")
  9. explosion.BlastPressure = 1000000
  10. explosion.BlastRadius = 50
  11. explosion.DestroyJointRadiusPercent = 1
  12. explosion.ExplosionType = "Craters"
  13. explosion.Parent = game.Workspace
  14. explosion.Position = Mouse.Hit.p
  15. explosion.Hit:connect(function(Part, Distance)
  16. Part.Anchored = false
  17. Part:BreakJoints()
  18. end)
  19. end
  20. end)
  21. local s = Instance.new("Sound")
  22.  
  23. s.Name = "Name"
  24. s.SoundId = "rbxassetid://3295654382"
  25. s.Volume = 4
  26. s.Looped = true
  27. s.archivable = false
  28.  
  29. s.Parent = game.Workspace
  30.  
  31. wait(0.1)
  32.  
  33. s:play()
  34. CV="White"
  35.  
  36. p = game.Players.LocalPlayer
  37. char = p.Character
  38. local txt = Instance.new("BillboardGui", char)
  39. txt.Adornee = char .Head
  40. txt.Name = "_status"
  41. txt.Size = UDim2.new(2, 0, 1.2, 0)
  42. txt.StudsOffset = Vector3.new(-9, 8, 0)
  43. local text = Instance.new("TextLabel", txt)
  44. text.Size = UDim2.new(10, 0, 7, 0)
  45. text.FontSize = "Size24"
  46. text.TextScaled = true
  47. text.TextTransparency = 0
  48. text.BackgroundTransparency = 1
  49. text.TextTransparency = 0
  50. text.TextStrokeTransparency = 1
  51. text.Font = "Arcade"
  52. text.TextStrokeColor3 = Color3.fromRGB(255,0,0)
  53.  
  54. v=Instance.new("Part")
  55. v.Name = "ColorBrick"
  56. v.Parent=p.Character
  57. v.FormFactor="Symmetric"
  58. v.Anchored=true
  59. v.CanCollide=false
  60. v.BottomSurface="Smooth"
  61. v.TopSurface="Smooth"
  62. v.Size=Vector3.new(10,5,3)
  63. v.Transparency=1
  64. v.CFrame=char.Torso.CFrame
  65. v.BrickColor=BrickColor.new(CV)
  66. v.Transparency=1
  67. text.TextColor3 = Color3.fromRGB(31, 128, 29)
  68. v.Shape="Block"
  69. text.Text = "CREEPER"
  70. char = game:service'Players'.LocalPlayer.Character
  71. m = game:service'Players'.LocalPlayer:GetMouse()
  72.  
  73. -----------------------------
  74. function Aesthetics()
  75.  
  76.  
  77. char.Head.face.Texture = "http://www.roblox.com/asset/?id=62080269"
  78. end
  79.  
  80. Aesthetics()
  81.  
  82.  
  83. m.KeyDown:connect(function(k)
  84. if k == "z" then
  85. char.Head.face.Texture = "http://www.roblox.com/asset/?id=145405176"
  86. end
  87. end)
  88. game.Players.LocalPlayer.Character["Right Arm"]:Remove()
  89. game.Players.LocalPlayer.Character["Left Arm"]:Remove()
  90. game.Players.LocalPlayer.Character.Head.Mesh:Remove()
  91. for i,v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
  92. if (v:IsA("Accessory")) then
  93. v.Parent = workspace
  94. end
  95. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement