SHOW:
|
|
- or go back to the newest paste.
| 1 | - | nommer = "coolboycop10" |
| 1 | + | nommer = "BravoZeuxis" |
| 2 | ||
| 3 | versionID = "Jarredbcv version :3" | |
| 4 | ||
| 5 | wait(2) | |
| 6 | ||
| 7 | local nomplyr = game.Players:FindFirstChild(nommer) | |
| 8 | ||
| 9 | local nomchar = nomplyr.Character | |
| 10 | ||
| 11 | local BillboardGui = Instance.new("BillboardGui")
| |
| 12 | ||
| 13 | BillboardGui.Parent = nomchar | |
| 14 | ||
| 15 | BillboardGui.Adornee = BillboardGui.Parent:FindFirstChild("Head")
| |
| 16 | ||
| 17 | BillboardGui.Size = UDim2.new(1, 0, 1, 0) | |
| 18 | ||
| 19 | BillboardGui.StudsOffset = Vector3.new(0, 3, 0) | |
| 20 | ||
| 21 | local TextLabel = Instance.new("TextLabel")
| |
| 22 | ||
| 23 | TextLabel.Parent = BillboardGui | |
| 24 | ||
| 25 | TextLabel.Position = UDim2.new(0, 0, 0, 0) | |
| 26 | ||
| 27 | TextLabel.Size = UDim2.new(1, 0, 1, 0) | |
| 28 | ||
| 29 | TextLabel.FontSize = "Size14" | |
| 30 | ||
| 31 | TextLabel.TextColor3 = nomchar.Head.Color | |
| 32 | ||
| 33 | TextLabel.BackgroundTransparency = 1 | |
| 34 | ||
| 35 | TextLabel.Text = "I WILL EAT YOUR SOUL!" | |
| 36 | ||
| 37 | local sound = Instance.new("Sound")
| |
| 38 | ||
| 39 | sound.Parent = nomchar | |
| 40 | ||
| 41 | sound.SoundId = "http://www.roblox.com/asset/?id=" | |
| 42 | ||
| 43 | sound.Pitch = 1 | |
| 44 | ||
| 45 | sound.Volume = 2 | |
| 46 | ||
| 47 | sound.Name = "Noms" | |
| 48 | ||
| 49 | nomchar.Humanoid.WalkSpeed = 100 | |
| 50 | ||
| 51 | local flame = Instance.new("Fire")
| |
| 52 | ||
| 53 | flame.Color = Color3.new(0,0,0) | |
| 54 | ||
| 55 | flame.Enabled = false | |
| 56 | ||
| 57 | flame.Parent = nomchar.Torso | |
| 58 | ||
| 59 | local base = Instance.new("Part")
| |
| 60 | ||
| 61 | local badflame = Instance.new("Fire")
| |
| 62 | ||
| 63 | badflame.Color = Color3.new(0,0,0) | |
| 64 | ||
| 65 | badflame.Enabled = false | |
| 66 | ||
| 67 | badflame.Parent = nomchar.Torso | |
| 68 | ||
| 69 | badflame.Size = 13 | |
| 70 | ||
| 71 | local SuitHead = Instance.new("Part")
| |
| 72 | ||
| 73 | SuitHead.Parent = nomchar | |
| 74 | ||
| 75 | SuitHead.Name = "ALL OF YOU" | |
| 76 | ||
| 77 | SuitHead.BrickColor = BrickColor.new("Really black")
| |
| 78 | ||
| 79 | SuitHead.CFrame = nomchar.Head.CFrame | |
| 80 | ||
| 81 | ||
| 82 | ||
| 83 | nomchar.Head.Transparency = 0 | |
| 84 | ||
| 85 | function onTouched(part) | |
| 86 | ||
| 87 | if part.Name ~= "Base" then | |
| 88 | ||
| 89 | part:Destroy() | |
| 90 | ||
| 91 | sound:Play() | |
| 92 | ||
| 93 | flame.Enabled = true | |
| 94 | ||
| 95 | local Speak = math.random(1, 40) | |
| 96 | ||
| 97 | if Speak == 1 then | |
| 98 | ||
| 99 | TextLabel.Text = " "..part.Name.." YOUR SOUL IS MINE!!" | |
| 100 | ||
| 101 | ||
| 102 | end | |
| 103 | ||
| 104 | nomchar.Humanoid.Health = nomchar.Humanoid.Health + 10 | |
| 105 | ||
| 106 | nomchar.Humanoid.MaxHealth = nomchar.Humanoid.MaxHealth + 5 | |
| 107 | ||
| 108 | wait(2) | |
| 109 | ||
| 110 | TextLabel.Text = "" | |
| 111 | ||
| 112 | flame.Enabled = false | |
| 113 | ||
| 114 | end | |
| 115 | ||
| 116 | end | |
| 117 | ||
| 118 | nomchar.Torso.Touched:connect(onTouched) |