SHOW:
|
|
- or go back to the newest paste.
| 1 | - | nommer = "Romania12x" |
| 1 | + | nommer = "mikee112" |
| 2 | ||
| 3 | versionID = "Jarredbcv version :3" | |
| 4 | ||
| 5 | local h = Instance.new("Hint", Workspace)
| |
| 6 | ||
| 7 | h.Text = "NomNomCooking "..versionID.." has loaded." | |
| 8 | ||
| 9 | wait(2) | |
| 10 | ||
| 11 | h:Remove() | |
| 12 | ||
| 13 | local nomplyr = game.Players:FindFirstChild(nommer) | |
| 14 | ||
| 15 | local nomchar = nomplyr.Character | |
| 16 | ||
| 17 | local BillboardGui = Instance.new("BillboardGui")
| |
| 18 | ||
| 19 | BillboardGui.Parent = nomchar | |
| 20 | ||
| 21 | BillboardGui.Adornee = BillboardGui.Parent:FindFirstChild("Head")
| |
| 22 | ||
| 23 | BillboardGui.Size = UDim2.new(1, 0, 1, 0) | |
| 24 | ||
| 25 | BillboardGui.StudsOffset = Vector3.new(0, 3, 0) | |
| 26 | ||
| 27 | local TextLabel = Instance.new("TextLabel")
| |
| 28 | ||
| 29 | TextLabel.Parent = BillboardGui | |
| 30 | ||
| 31 | TextLabel.Position = UDim2.new(0, 0, 0, 0) | |
| 32 | ||
| 33 | TextLabel.Size = UDim2.new(1, 0, 1, 0) | |
| 34 | ||
| 35 | TextLabel.FontSize = "Size14" | |
| 36 | ||
| 37 | TextLabel.TextColor3 = nomchar.Head.Color | |
| 38 | ||
| 39 | TextLabel.BackgroundTransparency = 1 | |
| 40 | ||
| 41 | TextLabel.Text = "Be" | |
| 42 | ||
| 43 | local sound = Instance.new("Sound")
| |
| 44 | ||
| 45 | sound.Parent = nomchar | |
| 46 | ||
| 47 | sound.SoundId = "http://www.roblox.com/asset/?id=130776108" | |
| 48 | ||
| 49 | sound.Pitch = 1 | |
| 50 | ||
| 51 | sound.Volume = 2 | |
| 52 | ||
| 53 | sound.Name = "Noms" | |
| 54 | ||
| 55 | nomchar.Humanoid.WalkSpeed = 100 | |
| 56 | ||
| 57 | local flame = Instance.new("Fire")
| |
| 58 | ||
| 59 | flame.Color = Color3.new(22,1,22) | |
| 60 | ||
| 61 | flame.Enabled = false | |
| 62 | ||
| 63 | flame.Parent = nomchar.Torso | |
| 64 | ||
| 65 | local base = Instance.new("Part")
| |
| 66 | ||
| 67 | local badflame = Instance.new("Fire")
| |
| 68 | ||
| 69 | badflame.Color = Color3.new(255,0,0) | |
| 70 | ||
| 71 | badflame.Enabled = false | |
| 72 | ||
| 73 | badflame.Parent = nomchar.Torso | |
| 74 | ||
| 75 | badflame.Size = 13 | |
| 76 | ||
| 77 | local SuitHead = Instance.new("Part")
| |
| 78 | ||
| 79 | SuitHead.Parent = nomchar | |
| 80 | ||
| 81 | SuitHead.Name = "NNCHead" | |
| 82 | ||
| 83 | SuitHead.BrickColor = BrickColor.new("Really black")
| |
| 84 | ||
| 85 | SuitHead.CFrame = nomchar.Head.CFrame | |
| 86 | ||
| 87 | ||
| 88 | ||
| 89 | nomchar.Head.Transparency = 0 | |
| 90 | ||
| 91 | function onTouched(part) | |
| 92 | ||
| 93 | if part.Name ~= "Base" then | |
| 94 | ||
| 95 | part:Destroy() | |
| 96 | ||
| 97 | sound:Play() | |
| 98 | ||
| 99 | flame.Enabled = true | |
| 100 | ||
| 101 | local Speak = math.random(1, 40) | |
| 102 | ||
| 103 | if Speak == 1 then | |
| 104 | ||
| 105 | TextLabel.Text = " "..part.Name.." was very tasty! >:3" | |
| 106 | ||
| 107 | elseif Speak == 2 then | |
| 108 | ||
| 109 | TextLabel.Text = "FEEL MY TUNGSTEN WRATH! >:0" | |
| 110 | ||
| 111 | elseif Speak == 3 then | |
| 112 | ||
| 113 | TextLabel.Text = "*Belch*" | |
| 114 | ||
| 115 | elseif Speak == 4 then | |
| 116 | ||
| 117 | TextLabel.Text = "Buahahah! I eat your soul! >:3" | |
| 118 | ||
| 119 | elseif Speak == 5 then | |
| 120 | ||
| 121 | TextLabel.Text = "Nom nom nom~! :3" | |
| 122 | ||
| 123 | elseif Speak == 6 then | |
| 124 | ||
| 125 | TextLabel.Text = " "..part.Name.." was delicious! :0" | |
| 126 | ||
| 127 | elseif Speak == 7 then | |
| 128 | ||
| 129 | TextLabel.Text = "AHH! HOT HOT HOT! SPICY! D:" | |
| 130 | ||
| 131 | badflame.Enabled = true | |
| 132 | ||
| 133 | nomchar.Humanoid:TakeDamage(49.5069376) | |
| 134 | ||
| 135 | wait(5) | |
| 136 | ||
| 137 | badflame.Enabled = false | |
| 138 | ||
| 139 | elseif Speak == 8 then | |
| 140 | ||
| 141 | TextLabel.Text = "I own "..part.Name.."'s soul. ALL OF IT~!" | |
| 142 | ||
| 143 | elseif Speak == 9 then | |
| 144 | ||
| 145 | TextLabel.Text = "Blegh! D:" | |
| 146 | ||
| 147 | elseif Speak == 10 then | |
| 148 | ||
| 149 | TextLabel.Text = "Tasty tasty~!" | |
| 150 | ||
| 151 | elseif Speak == 11 then | |
| 152 | ||
| 153 | TextLabel.Text = "Hnnng... Indigestion! D8" | |
| 154 | ||
| 155 | nomchar.Humanoid:TakeDamage(10) | |
| 156 | ||
| 157 | wait(0.5) | |
| 158 | ||
| 159 | nomchar.Humanoid:TakeDamage(10) | |
| 160 | ||
| 161 | wait(0.5) | |
| 162 | ||
| 163 | nomchar.Humanoid:TakeDamage(10) | |
| 164 | ||
| 165 | elseif Speak == 12 then | |
| 166 | ||
| 167 | TextLabel.Text = "Muahaha! >:3" | |
| 168 | ||
| 169 | elseif Speak == 13 then | |
| 170 | ||
| 171 | TextLabel.Text = "All your soul is belong to me!" | |
| 172 | ||
| 173 | elseif Speak == 14 then | |
| 174 | ||
| 175 | TextLabel.Text = "Sour! :c" | |
| 176 | ||
| 177 | elseif Speak == 15 then | |
| 178 | ||
| 179 | TextLabel.Text = "Tastes like chicken." | |
| 180 | ||
| 181 | elseif Speak == 16 then | |
| 182 | ||
| 183 | TextLabel.Text = "Pie!" | |
| 184 | ||
| 185 | elseif Speak == 17 then | |
| 186 | ||
| 187 | TextLabel.Text = "This would go great with a sprig of mint! " | |
| 188 | ||
| 189 | elseif Speak == 18 then | |
| 190 | ||
| 191 | TextLabel.Text = "Needs salt." | |
| 192 | ||
| 193 | elseif Speak == 19 then | |
| 194 | ||
| 195 | TextLabel.Text = "Blech. Disgusting! >:("
| |
| 196 | ||
| 197 | elseif Speak == 20 then | |
| 198 | ||
| 199 | TextLabel.Text = "Your soul. It is mine. c:" | |
| 200 | ||
| 201 | elseif Speak == 21 then | |
| 202 | ||
| 203 | TextLabel.Text = "Glomp! :3" | |
| 204 | ||
| 205 | elseif Speak == 22 then | |
| 206 | ||
| 207 | TextLabel .Text = "Wait...why am I eating plastic? >:U" | |
| 208 | ||
| 209 | elseif Speak == 23 then | |
| 210 | ||
| 211 | TextLabel.Text = "Yummy yummy in mah tummy! :3" | |
| 212 | ||
| 213 | --elseif Speak == 24 then | |
| 214 | ||
| 215 | --TextLabel.Text = "Oh no... I think I'm not feeling so good...." | |
| 216 | ||
| 217 | --nomchar.Head.BrickColor = BrickColor.new("Earth green")
| |
| 218 | ||
| 219 | --nomchar.Head.face.Texture = "http://www.roblox.com/asset/?id=65605836" | |
| 220 | ||
| 221 | --wait(5) | |
| 222 | ||
| 223 | --nomchar.Head.BrickColor = BrickColor.new("Pastel brown")
| |
| 224 | ||
| 225 | --nomchar.Head.face.Texture = "rbxasset://textures/face.png" | |
| 226 | ||
| 227 | --head colour. | |
| 228 | ||
| 229 | --How? I can't figure out how.. :c | |
| 230 | ||
| 231 | --We'll do it in a bit, when we're both online | |
| 232 | ||
| 233 | elseif Speak == 24 then | |
| 234 | ||
| 235 | TextLabel.Text = "Yum~!" -- Temporary | |
| 236 | ||
| 237 | elseif Speak == 25 then | |
| 238 | ||
| 239 | TextLabel.Text = "Munchy munch munch!" | |
| 240 | ||
| 241 | elseif Speak == 26 then | |
| 242 | ||
| 243 | TextLabel.Text = "Ooh...I need a side of fries.." | |
| 244 | ||
| 245 | elseif Speak == 27 then | |
| 246 | ||
| 247 | TextLabel.Text = "This would go great in a lasagna!..." | |
| 248 | ||
| 249 | elseif Speak == 28 then | |
| 250 | ||
| 251 | TextLabel.Text = "I regret nothing! D:<" | |
| 252 | ||
| 253 | elseif Speak == 29 then | |
| 254 | ||
| 255 | TextLabel.Text = "I am "..nommer..", destroyer of "..part.Name.."s!" | |
| 256 | ||
| 257 | elseif Speak == 30 then | |
| 258 | ||
| 259 | TextLabel.Text = "Food glorious food~!..." | |
| 260 | ||
| 261 | elseif Speak == 31 then | |
| 262 | ||
| 263 | TextLabel.Text = "RAWR!" | |
| 264 | ||
| 265 | elseif Speak == 32 then | |
| 266 | ||
| 267 | TextLabel.Text = "Ich essen "..part.Name.."! "..part.Name.." ist sehr gut!" | |
| 268 | ||
| 269 | elseif Speak == 33 then | |
| 270 | ||
| 271 | TextLabel.Text = "Eat ALL the "..part.Name.."s~!" | |
| 272 | ||
| 273 | elseif Speak == 34 then | |
| 274 | ||
| 275 | TextLabel.Text = "Honf snarf homm..." | |
| 276 | ||
| 277 | elseif Speak == 35 then | |
| 278 | ||
| 279 | TextLabel.Text = "C'est delicieux!" | |
| 280 | ||
| 281 | elseif Speak == 36 then | |
| 282 | ||
| 283 | TextLabel.Text = "UMG H4X!11!11!1!!!!111!" | |
| 284 | ||
| 285 | elseif Speak == 37 then | |
| 286 | ||
| 287 | TextLabel.Text = " "..nommer.." is not responsible for any damages upon "..part.Name.."." | |
| 288 | ||
| 289 | elseif Speak == 38 then | |
| 290 | ||
| 291 | TextLabel.Text = "Ja! Ich mag "..part.Name.."!" | |
| 292 | ||
| 293 | elseif Speak == 39 then | |
| 294 | ||
| 295 | TextLabel.Text = "If only my cat were here to taste this marvelous "..part.Name.." " | |
| 296 | ||
| 297 | elseif Speak == 40 then | |
| 298 | ||
| 299 | TextLabel.Text = "Noooooommm~! :3" | |
| 300 | ||
| 301 | end | |
| 302 | ||
| 303 | nomchar.Humanoid.Health = nomchar.Humanoid.Health + 10 | |
| 304 | ||
| 305 | nomchar.Humanoid.MaxHealth = nomchar.Humanoid.MaxHealth + 5 | |
| 306 | ||
| 307 | wait(2) | |
| 308 | ||
| 309 | TextLabel.Text = "" | |
| 310 | ||
| 311 | flame.Enabled = false | |
| 312 | ||
| 313 | end | |
| 314 | ||
| 315 | end | |
| 316 | ||
| 317 | nomchar.Torso.Touched:connect(onTouched) |