Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local Part = Instance.new("Part")
- local BillBoardGui = Instance.new("BillboardGui")
- local player = game.Players.LocalPlayer
- local character = player.Character
- Part.Parent = character
- BillBoardGui.Parent = Part
- local Weld = Instance.new("Weld")
- Weld.Parent = Part
- Weld.Part0 = character.Torso
- Weld.Part1 = Part
- Part.Name = "Entity's Gui"
- local attachment = Instance.new("Attachment")
- wait(2)
- Part.Size = Vector3.new(Part.Size.X+1,Part.Size.Y+5,Part.Size.Z)
- local ParticleEmmiter = Instance.new("ParticleEmitter")
- attachment.Parent = Part
- ParticleEmmiter.Parent = Part
- ParticleEmmiter.Size = NumberSequence.new(3)
- ParticleEmmiter.Lifetime = NumberRange.new(0.1)
- ParticleEmmiter.Rate = NumberRange.new(100)
- ParticleEmmiter.Rotation = NumberRange.new(-10,10)
- ParticleEmmiter.LockedToPart = true
- local Light = Instance.new("PointLight")
- local Decal = Instance.new("Decal")
- Decal.Parent = Part
- Decal.Texture = "http://www.roblox.com/asset/?id=11930073927"
- Part.Transparency = 1
- Light.Parent = Part
- Light.Brightness = 60
- Light.Color = Color3.new(255,0,0)
- local head = character.Head
- local torso = character.Torso
- local LeftArm = character["Left Arm"]
- local RightArm = character["Right Arm"]
- local LeftLeg = character["Left Leg"]
- local RightLeg = character["Right Leg"]
- head.Transparency = 1
- torso .Transparency = 1
- LeftArm.Transparency = 1
- RightArm.Transparency = 1
- LeftLeg.Transparency = 1
- RightLeg.Transparency = 1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement