Advertisement
Guest User

Script

a guest
Mar 30th, 2020
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.70 KB | None | 0 0
  1. local player = game.Players.LocalPlayer
  2.  
  3. local changehead = Instance.new("Part")
  4. changehead.Name = "plugin"
  5. changehead.Color = Color3.fromRGB(0,0,0)
  6. changehead.Material = ("Neon")
  7. changehead.Shape = ("Ball")
  8. changehead.Size = Vector3.new(9,9,9)
  9. changehead.Parent = game.Workspace
  10.  
  11. local tagname = Instance.new("BillboardGui")
  12. tagname.Size = UDim2.new(10,0,10,0)
  13. tagname.StudsOffset = Vector3.new(0,5,0)
  14. tagname.Parent = changehead
  15.  
  16. local tagtext = Instance.new("TextLabel")
  17. tagtext.Text = ("The Duplication Ball by OneSecondBro")
  18. tagtext.TextColor3 = Color3.fromRGB(0,0,0)
  19. tagtext.BackgroundTransparency = 1
  20. tagtext.BackgroundColor3 = Color3.fromRGB(0,0,0)
  21. tagtext.TextStrokeTransparency = 0
  22. tagtext.TextStrokeColor3 = Color3.fromRGB(0,0,0)
  23. tagtext.Size = UDim2.new(2,0,0.5,0)
  24. tagtext.Position = UDim2.new(-0.5,0,0,0)
  25. tagtext.TextScaled = true
  26. tagtext.LineHeight = 1
  27. tagtext.Font = ("Antique")
  28. tagtext.Parent = tagname
  29.  
  30. local firefx = Instance.new ("Fire")
  31. firefx.Heat = 12
  32. firefx.Size = 15
  33. firefx.Color = Color3.fromRGB(0,0,0)
  34. firefx.SecondaryColor = Color3.fromRGB(0,0,0)
  35. firefx.Parent = changehead
  36.  
  37. local lightfx = Instance.new ("PointLight")
  38. lightfx.Parent = changehead
  39. lightfx.Brightness = 8
  40. lightfx.Range = 8
  41. lightfx.Color = Color3.new(200,200,200)
  42.  
  43. local musicfx = Instance.new("Sound")
  44. musicfx.SoundId = ("rbxassetid://45819151")
  45. musicfx.Playing = true
  46. musicfx.Looped = true
  47. musicfx.Parent = changehead
  48.  
  49.  
  50. changehead.Touched:connect(function(hit)
  51. if hit and hit.Parent and hit.Parent:FindFirstChild("Humanoid") then
  52. hit.Parent.Humanoid.Health = 0
  53. player.Character.Head.Color = Color3.fromRGB(0,0,0)
  54. changehead.Fire:Clone().Parent = player.Character.Head
  55. end
  56. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement