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