Advertisement
JW2

Entity #1 Script

JW2
Dec 28th, 2022 (edited)
131
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.42 KB | None | 0 0
  1. local Part = Instance.new("Part")
  2. local BillBoardGui = Instance.new("BillboardGui")
  3. local player = game.Players.LocalPlayer
  4. local character = player.Character
  5. Part.Parent = character
  6. BillBoardGui.Parent = Part
  7. local Weld = Instance.new("Weld")
  8. Weld.Parent = Part
  9. Weld.Part0 = character.Torso
  10. Weld.Part1 = Part
  11. Part.Name = "Entity's Gui"
  12. local attachment = Instance.new("Attachment")
  13. wait(2)
  14. Part.Size = Vector3.new(Part.Size.X+1,Part.Size.Y+5,Part.Size.Z)
  15. local ParticleEmmiter = Instance.new("ParticleEmitter")
  16. attachment.Parent = Part
  17. ParticleEmmiter.Parent = Part
  18. ParticleEmmiter.Size = NumberSequence.new(3)
  19. ParticleEmmiter.Lifetime = NumberRange.new(0.1)
  20. ParticleEmmiter.Rate = NumberRange.new(100)
  21. ParticleEmmiter.Rotation = NumberRange.new(-10,10)
  22. ParticleEmmiter.LockedToPart = true
  23. local Light = Instance.new("PointLight")
  24. local Decal = Instance.new("Decal")
  25. Decal.Parent = Part
  26. Decal.Texture = "http://www.roblox.com/asset/?id=11930073927"
  27. Part.Transparency = 1
  28. Light.Parent = Part
  29. Light.Brightness = 60
  30. Light.Color = Color3.new(255,0,0)
  31. local head = character.Head
  32. local torso = character.Torso
  33. local LeftArm = character["Left Arm"]
  34. local RightArm = character["Right Arm"]
  35. local LeftLeg = character["Left Leg"]
  36. local RightLeg = character["Right Leg"]
  37. head.Transparency = 1
  38. torso .Transparency = 1
  39. LeftArm.Transparency = 1
  40. RightArm.Transparency = 1
  41. LeftLeg.Transparency = 1
  42. RightLeg.Transparency = 1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement