SHOW:
|
|
- or go back to the newest paste.
1 | if game:GetService("RunService"):IsClient() then error("Script must be server-side in order to work; use h/ and not hl/") end | |
2 | local Player,Mouse,mouse,UserInputService,ContextActionService = owner | |
3 | do | |
4 | print("FE Compatibility code by Mokiros") | |
5 | script.Parent = Player.Character | |
6 | ||
7 | --RemoteEvent for communicating | |
8 | local Event = Instance.new("RemoteEvent") | |
9 | Event.Name = "UserInput_Event" | |
10 | ||
11 | --Fake event to make stuff like Mouse.KeyDown work | |
12 | local function fakeEvent() | |
13 | local t = {_fakeEvent=true,Connect=function(self,f)self.Function=f end} | |
14 | t.connect = t.Connect | |
15 | return t | |
16 | end | |
17 | ||
18 | --Creating fake input objects with fake variables | |
19 | local m = {Target=nil,Hit=CFrame.new(),KeyUp=fakeEvent(),KeyDown=fakeEvent(),Button1Up=fakeEvent(),Button1Down=fakeEvent()} | |
20 | local UIS = {InputBegan=fakeEvent(),InputEnded=fakeEvent()} | |
21 | local CAS = {Actions={},BindAction=function(self,name,fun,touch,...) | |
22 | CAS.Actions[name] = fun and {Name=name,Function=fun,Keys={...}} or nil | |
23 | end} | |
24 | --Merged 2 functions into one by checking amount of arguments | |
25 | CAS.UnbindAction = CAS.BindAction | |
26 | ||
27 | --This function will trigger the events that have been :Connect()'ed | |
28 | local function te(self,ev,...) | |
29 | local t = m[ev] | |
30 | if t and t._fakeEvent and t.Function then | |
31 | t.Function(...) | |
32 | end | |
33 | end | |
34 | m.TrigEvent = te | |
35 | UIS.TrigEvent = te | |
36 | ||
37 | Event.OnServerEvent:Connect(function(plr,io) | |
38 | if plr~=Player then return end | |
39 | if io.isMouse then | |
40 | m.Target = io.Target | |
41 | m.Hit = io.Hit | |
42 | else | |
43 | local b = io.UserInputState == Enum.UserInputState.Begin | |
44 | if io.UserInputType == Enum.UserInputType.MouseButton1 then | |
45 | return m:TrigEvent(b and "Button1Down" or "Button1Up") | |
46 | end | |
47 | for _,t in pairs(CAS.Actions) do | |
48 | for _,k in pairs(t.Keys) do | |
49 | if k==io.KeyCode then | |
50 | t.Function(t.Name,io.UserInputState,io) | |
51 | end | |
52 | end | |
53 | end | |
54 | m:TrigEvent(b and "KeyDown" or "KeyUp",io.KeyCode.Name:lower()) | |
55 | UIS:TrigEvent(b and "InputBegan" or "InputEnded",io,false) | |
56 | end | |
57 | end) | |
58 | Event.Parent = NLS([==[ | |
59 | local Player = game:GetService("Players").LocalPlayer | |
60 | local Event = script:WaitForChild("UserInput_Event") | |
61 | ||
62 | local UIS = game:GetService("UserInputService") | |
63 | local input = function(io,a) | |
64 | if a then return end | |
65 | --Since InputObject is a client-side instance, we create and pass table instead | |
66 | Event:FireServer({KeyCode=io.KeyCode,UserInputType=io.UserInputType,UserInputState=io.UserInputState}) | |
67 | end | |
68 | UIS.InputBegan:Connect(input) | |
69 | UIS.InputEnded:Connect(input) | |
70 | ||
71 | local Mouse = Player:GetMouse() | |
72 | local h,t | |
73 | --Give the server mouse data 30 times every second, but only if the values changed | |
74 | --If player is not moving their mouse, client won't fire events | |
75 | while wait(1/30) do | |
76 | if h~=Mouse.Hit or t~=Mouse.Target then | |
77 | h,t=Mouse.Hit,Mouse.Target | |
78 | Event:FireServer({isMouse=true,Target=t,Hit=h}) | |
79 | end | |
80 | end]==],Player.Character) | |
81 | Mouse,mouse,UserInputService,ContextActionService = m,m,UIS,CAS | |
82 | end | |
83 | ||
84 | local plrs = game:GetService("Players") | |
85 | local plr = owner | |
86 | local char = plr.Character | |
87 | local tweenserv = game:GetService("TweenService") | |
88 | local lighting = game:GetService("Lighting") | |
89 | local hum = char:FindFirstChildOfClass("Humanoid") | |
90 | local tor = char:FindFirstChild("Torso") or char:FindFirstChild("UpperTorso") | |
91 | local root = char:FindFirstChild("HumanoidRootPart") | |
92 | local head = char:FindFirstChild("Head") | |
93 | local face = head:FindFirstChildOfClass("Decal") | |
94 | local larm = char:FindFirstChild("Left Arm") or char:FindFirstChild("LeftUpperArm") | |
95 | local rarm = char:FindFirstChild("Right Arm") or char:FindFirstChild("RightUpperArm") | |
96 | local rleg = char:FindFirstChild("Right Leg") or char:FindFirstChild("RightUpperLeg") | |
97 | local lleg = char:FindFirstChild("Left Leg") or char:FindFirstChild("LeftUpperLeg") | |
98 | local neck = tor:FindFirstChild("Neck") | |
99 | local rootj = root:FindFirstChild("RootJoint") | |
100 | local LS = tor:FindFirstChild("Left Shoulder") | |
101 | local RS = tor:FindFirstChild("Right Shoulder") | |
102 | local LH = tor:FindFirstChild("Left Hip") | |
103 | local RH = tor:FindFirstChild("Right Hip") | |
104 | local bp = plr:FindFirstChild("Backpack") | |
105 | ||
106 | hum:ClearAllChildren() | |
107 | char.Animate:remove() | |
108 | ||
109 | ||
110 | --Converted with ttyyuu12345's model to script plugin v4 | |
111 | function sandbox(var,func) | |
112 | local env = getfenv(func) | |
113 | local newenv = setmetatable({},{ | |
114 | __index = function(self,k) | |
115 | if k=="script" then | |
116 | return var | |
117 | else | |
118 | return env[k] | |
119 | end | |
120 | end, | |
121 | }) | |
122 | setfenv(func,newenv) | |
123 | return func | |
124 | end | |
125 | cors = {} | |
126 | mas = Instance.new("Model",game:GetService("Lighting")) | |
127 | Model0 = Instance.new("Model") | |
128 | Part1 = Instance.new("Part") | |
129 | Part2 = Instance.new("Part") | |
130 | Decal3 = Instance.new("Decal") | |
131 | Model4 = Instance.new("Model") | |
132 | Part5 = Instance.new("Part") | |
133 | ManualWeld6 = Instance.new("ManualWeld") | |
134 | ManualWeld7 = Instance.new("ManualWeld") | |
135 | Part8 = Instance.new("Part") | |
136 | ManualWeld9 = Instance.new("ManualWeld") | |
137 | Part10 = Instance.new("Part") | |
138 | ManualWeld11 = Instance.new("ManualWeld") | |
139 | Part12 = Instance.new("Part") | |
140 | ManualWeld13 = Instance.new("ManualWeld") | |
141 | Part14 = Instance.new("Part") | |
142 | Part15 = Instance.new("Part") | |
143 | ManualWeld16 = Instance.new("ManualWeld") | |
144 | Part17 = Instance.new("Part") | |
145 | ManualWeld18 = Instance.new("ManualWeld") | |
146 | WedgePart19 = Instance.new("WedgePart") | |
147 | ManualWeld20 = Instance.new("ManualWeld") | |
148 | WedgePart21 = Instance.new("WedgePart") | |
149 | ManualWeld22 = Instance.new("ManualWeld") | |
150 | Model23 = Instance.new("Model") | |
151 | Part24 = Instance.new("Part") | |
152 | ManualWeld25 = Instance.new("ManualWeld") | |
153 | ManualWeld26 = Instance.new("ManualWeld") | |
154 | Part27 = Instance.new("Part") | |
155 | Part28 = Instance.new("Part") | |
156 | ManualWeld29 = Instance.new("ManualWeld") | |
157 | Part30 = Instance.new("Part") | |
158 | ManualWeld31 = Instance.new("ManualWeld") | |
159 | Part32 = Instance.new("Part") | |
160 | ManualWeld33 = Instance.new("ManualWeld") | |
161 | Part34 = Instance.new("Part") | |
162 | ManualWeld35 = Instance.new("ManualWeld") | |
163 | Part36 = Instance.new("Part") | |
164 | ManualWeld37 = Instance.new("ManualWeld") | |
165 | WedgePart38 = Instance.new("WedgePart") | |
166 | ManualWeld39 = Instance.new("ManualWeld") | |
167 | WedgePart40 = Instance.new("WedgePart") | |
168 | ManualWeld41 = Instance.new("ManualWeld") | |
169 | Model42 = Instance.new("Model") | |
170 | Part43 = Instance.new("Part") | |
171 | ManualWeld44 = Instance.new("ManualWeld") | |
172 | ManualWeld45 = Instance.new("ManualWeld") | |
173 | Part46 = Instance.new("Part") | |
174 | Part47 = Instance.new("Part") | |
175 | ManualWeld48 = Instance.new("ManualWeld") | |
176 | Part49 = Instance.new("Part") | |
177 | ManualWeld50 = Instance.new("ManualWeld") | |
178 | Part51 = Instance.new("Part") | |
179 | ManualWeld52 = Instance.new("ManualWeld") | |
180 | Part53 = Instance.new("Part") | |
181 | ManualWeld54 = Instance.new("ManualWeld") | |
182 | Part55 = Instance.new("Part") | |
183 | ManualWeld56 = Instance.new("ManualWeld") | |
184 | WedgePart57 = Instance.new("WedgePart") | |
185 | ManualWeld58 = Instance.new("ManualWeld") | |
186 | WedgePart59 = Instance.new("WedgePart") | |
187 | ManualWeld60 = Instance.new("ManualWeld") | |
188 | Model61 = Instance.new("Model") | |
189 | Part62 = Instance.new("Part") | |
190 | ManualWeld63 = Instance.new("ManualWeld") | |
191 | ManualWeld64 = Instance.new("ManualWeld") | |
192 | Part65 = Instance.new("Part") | |
193 | ManualWeld66 = Instance.new("ManualWeld") | |
194 | Part67 = Instance.new("Part") | |
195 | ManualWeld68 = Instance.new("ManualWeld") | |
196 | Part69 = Instance.new("Part") | |
197 | Part70 = Instance.new("Part") | |
198 | ManualWeld71 = Instance.new("ManualWeld") | |
199 | Part72 = Instance.new("Part") | |
200 | ManualWeld73 = Instance.new("ManualWeld") | |
201 | Part74 = Instance.new("Part") | |
202 | ManualWeld75 = Instance.new("ManualWeld") | |
203 | WedgePart76 = Instance.new("WedgePart") | |
204 | ManualWeld77 = Instance.new("ManualWeld") | |
205 | WedgePart78 = Instance.new("WedgePart") | |
206 | ManualWeld79 = Instance.new("ManualWeld") | |
207 | Model80 = Instance.new("Model") | |
208 | Part81 = Instance.new("Part") | |
209 | ManualWeld82 = Instance.new("ManualWeld") | |
210 | ManualWeld83 = Instance.new("ManualWeld") | |
211 | Part84 = Instance.new("Part") | |
212 | ManualWeld85 = Instance.new("ManualWeld") | |
213 | Part86 = Instance.new("Part") | |
214 | Part87 = Instance.new("Part") | |
215 | ManualWeld88 = Instance.new("ManualWeld") | |
216 | Part89 = Instance.new("Part") | |
217 | ManualWeld90 = Instance.new("ManualWeld") | |
218 | Part91 = Instance.new("Part") | |
219 | ManualWeld92 = Instance.new("ManualWeld") | |
220 | Part93 = Instance.new("Part") | |
221 | ManualWeld94 = Instance.new("ManualWeld") | |
222 | WedgePart95 = Instance.new("WedgePart") | |
223 | ManualWeld96 = Instance.new("ManualWeld") | |
224 | WedgePart97 = Instance.new("WedgePart") | |
225 | ManualWeld98 = Instance.new("ManualWeld") | |
226 | Model99 = Instance.new("Model") | |
227 | Part100 = Instance.new("Part") | |
228 | ManualWeld101 = Instance.new("ManualWeld") | |
229 | ManualWeld102 = Instance.new("ManualWeld") | |
230 | Part103 = Instance.new("Part") | |
231 | Part104 = Instance.new("Part") | |
232 | ManualWeld105 = Instance.new("ManualWeld") | |
233 | Part106 = Instance.new("Part") | |
234 | ManualWeld107 = Instance.new("ManualWeld") | |
235 | Part108 = Instance.new("Part") | |
236 | ManualWeld109 = Instance.new("ManualWeld") | |
237 | Part110 = Instance.new("Part") | |
238 | ManualWeld111 = Instance.new("ManualWeld") | |
239 | Part112 = Instance.new("Part") | |
240 | ManualWeld113 = Instance.new("ManualWeld") | |
241 | WedgePart114 = Instance.new("WedgePart") | |
242 | ManualWeld115 = Instance.new("ManualWeld") | |
243 | WedgePart116 = Instance.new("WedgePart") | |
244 | ManualWeld117 = Instance.new("ManualWeld") | |
245 | Model118 = Instance.new("Model") | |
246 | Part119 = Instance.new("Part") | |
247 | ManualWeld120 = Instance.new("ManualWeld") | |
248 | ManualWeld121 = Instance.new("ManualWeld") | |
249 | Part122 = Instance.new("Part") | |
250 | ManualWeld123 = Instance.new("ManualWeld") | |
251 | Part124 = Instance.new("Part") | |
252 | Part125 = Instance.new("Part") | |
253 | ManualWeld126 = Instance.new("ManualWeld") | |
254 | Part127 = Instance.new("Part") | |
255 | ManualWeld128 = Instance.new("ManualWeld") | |
256 | Part129 = Instance.new("Part") | |
257 | ManualWeld130 = Instance.new("ManualWeld") | |
258 | Part131 = Instance.new("Part") | |
259 | ManualWeld132 = Instance.new("ManualWeld") | |
260 | WedgePart133 = Instance.new("WedgePart") | |
261 | ManualWeld134 = Instance.new("ManualWeld") | |
262 | WedgePart135 = Instance.new("WedgePart") | |
263 | ManualWeld136 = Instance.new("ManualWeld") | |
264 | Model137 = Instance.new("Model") | |
265 | Part138 = Instance.new("Part") | |
266 | ManualWeld139 = Instance.new("ManualWeld") | |
267 | ManualWeld140 = Instance.new("ManualWeld") | |
268 | Part141 = Instance.new("Part") | |
269 | ManualWeld142 = Instance.new("ManualWeld") | |
270 | Part143 = Instance.new("Part") | |
271 | ManualWeld144 = Instance.new("ManualWeld") | |
272 | Part145 = Instance.new("Part") | |
273 | ManualWeld146 = Instance.new("ManualWeld") | |
274 | Part147 = Instance.new("Part") | |
275 | ManualWeld148 = Instance.new("ManualWeld") | |
276 | Part149 = Instance.new("Part") | |
277 | Part150 = Instance.new("Part") | |
278 | ManualWeld151 = Instance.new("ManualWeld") | |
279 | WedgePart152 = Instance.new("WedgePart") | |
280 | ManualWeld153 = Instance.new("ManualWeld") | |
281 | WedgePart154 = Instance.new("WedgePart") | |
282 | ManualWeld155 = Instance.new("ManualWeld") | |
283 | Model156 = Instance.new("Model") | |
284 | Part157 = Instance.new("Part") | |
285 | ManualWeld158 = Instance.new("ManualWeld") | |
286 | ManualWeld159 = Instance.new("ManualWeld") | |
287 | Part160 = Instance.new("Part") | |
288 | Part161 = Instance.new("Part") | |
289 | ManualWeld162 = Instance.new("ManualWeld") | |
290 | Part163 = Instance.new("Part") | |
291 | ManualWeld164 = Instance.new("ManualWeld") | |
292 | Part165 = Instance.new("Part") | |
293 | ManualWeld166 = Instance.new("ManualWeld") | |
294 | Part167 = Instance.new("Part") | |
295 | ManualWeld168 = Instance.new("ManualWeld") | |
296 | Part169 = Instance.new("Part") | |
297 | ManualWeld170 = Instance.new("ManualWeld") | |
298 | WedgePart171 = Instance.new("WedgePart") | |
299 | ManualWeld172 = Instance.new("ManualWeld") | |
300 | WedgePart173 = Instance.new("WedgePart") | |
301 | ManualWeld174 = Instance.new("ManualWeld") | |
302 | Model175 = Instance.new("Model") | |
303 | Part176 = Instance.new("Part") | |
304 | ManualWeld177 = Instance.new("ManualWeld") | |
305 | ManualWeld178 = Instance.new("ManualWeld") | |
306 | Part179 = Instance.new("Part") | |
307 | Part180 = Instance.new("Part") | |
308 | ManualWeld181 = Instance.new("ManualWeld") | |
309 | Part182 = Instance.new("Part") | |
310 | ManualWeld183 = Instance.new("ManualWeld") | |
311 | Part184 = Instance.new("Part") | |
312 | ManualWeld185 = Instance.new("ManualWeld") | |
313 | Part186 = Instance.new("Part") | |
314 | ManualWeld187 = Instance.new("ManualWeld") | |
315 | Part188 = Instance.new("Part") | |
316 | ManualWeld189 = Instance.new("ManualWeld") | |
317 | WedgePart190 = Instance.new("WedgePart") | |
318 | ManualWeld191 = Instance.new("ManualWeld") | |
319 | WedgePart192 = Instance.new("WedgePart") | |
320 | ManualWeld193 = Instance.new("ManualWeld") | |
321 | Part194 = Instance.new("Part") | |
322 | ManualWeld195 = Instance.new("ManualWeld") | |
323 | ManualWeld196 = Instance.new("ManualWeld") | |
324 | Model0.Name = "PIZZABOX" | |
325 | Model0.Parent = mas | |
326 | Part1.Name = "pizzaboxbase" | |
327 | Part1.Parent = Model0 | |
328 | Part1.Material = Enum.Material.SmoothPlastic | |
329 | Part1.BrickColor = BrickColor.new("Institutional white") | |
330 | Part1.CanCollide = false | |
331 | Part1.Size = Vector3.new(2.5, 0.200000003, 2.5) | |
332 | Part1.CFrame = CFrame.new(-206.813606, 117.199997, -50.76017, 1, 0, 0, 0, 1, 0, 0, 0, 1) | |
333 | Part1.BottomSurface = Enum.SurfaceType.Smooth | |
334 | Part1.TopSurface = Enum.SurfaceType.Smooth | |
335 | Part1.Color = Color3.new(0.972549, 0.972549, 0.972549) | |
336 | Part1.Position = Vector3.new(-106.813606, 117.199997, -50.76017) | |
337 | Part1.Color = Color3.new(0.972549, 0.972549, 0.972549) | |
338 | Part2.Name = "pizzaboxtop" | |
339 | Part2.Parent = Model0 | |
340 | Part2.Material = Enum.Material.SmoothPlastic | |
341 | Part2.BrickColor = BrickColor.new("Institutional white") | |
342 | Part2.CanCollide = false | |
343 | Part2.Size = Vector3.new(2.5, 0.200000003, 2.5) | |
344 | Part2.CFrame = CFrame.new(-106.813606, 117.399994, -50.76017, 1, 0, 0, 0, 1, 0, 0, 0, 1) | |
345 | Part2.BottomSurface = Enum.SurfaceType.Smooth | |
346 | Part2.TopSurface = Enum.SurfaceType.Smooth | |
347 | Part2.Color = Color3.new(0.972549, 0.972549, 0.972549) | |
348 | Part2.Position = Vector3.new(-106.813606, 117.399994, -50.76017) | |
349 | Part2.Color = Color3.new(0.972549, 0.972549, 0.972549) | |
350 | Decal3.Parent = Part2 | |
351 | - | Decal3.Texture = "rbxassetid://3130730588" |
351 | + | Decal3.Texture = "rbxassetid://1248018041" |
352 | Decal3.Face = Enum.NormalId.Top | |
353 | Model4.Name = "pizza1" | |
354 | Model4.Parent = Model0 | |
355 | Part5.Name = "crust" | |
356 | Part5.Parent = Model4 | |
357 | Part5.Material = Enum.Material.Sand | |
358 | Part5.BrickColor = BrickColor.new("Gold") | |
359 | Part5.Rotation = Vector3.new(0, -89.9399948, 0) | |
360 | Part5.CanCollide = false | |
361 | Part5.Shape = Enum.PartType.Cylinder | |
362 | Part5.Size = Vector3.new(0.599999964, 0.200000003, 0.200000003) | |
363 | Part5.CFrame = CFrame.new(-107.713593, 117.399994, -50.76017, 1.19248735e-08, 0, -0.999999404, 1.4220275e-16, 1, -8.8817842e-16, 1, 8.46892511e-24, 1.19248806e-08) | |
364 | Part5.BottomSurface = Enum.SurfaceType.Smooth | |
365 | Part5.TopSurface = Enum.SurfaceType.Smooth | |
366 | Part5.Color = Color3.new(0.937255, 0.721569, 0.219608) | |
367 | Part5.Position = Vector3.new(-107.713593, 117.399994, -50.76017) | |
368 | Part5.Orientation = Vector3.new(0, -90, 0) | |
369 | Part5.Color = Color3.new(0.937255, 0.721569, 0.219608) | |
370 | ManualWeld6.Name = "Weld" | |
371 | ManualWeld6.Parent = Part5 | |
372 | ManualWeld6.C0 = CFrame.new(0, 0, 0, 1.19248806e-08, 0, 1, 0, 1, 0, -1, 0, 1.19248806e-08) | |
373 | ManualWeld6.C1 = CFrame.new(7.62939453e-06, 0.100002289, 0.400009155, 1.19248762e-08, -1, -4.37113883e-08, 0, -4.37113883e-08, 1, -0.999999702, -1.19248806e-08, -5.21253064e-16) | |
374 | ManualWeld6.Part0 = Part5 | |
375 | ManualWeld6.Part1 = Part14 | |
376 | ManualWeld7.Name = "Weld" | |
377 | ManualWeld7.Parent = Part5 | |
378 | ManualWeld7.C0 = CFrame.new(0, 0, 0, 1.19248735e-08, 1.4220275e-16, 1, 0, 1, 8.46892511e-24, -0.999999404, -8.8817842e-16, 1.19248806e-08) | |
379 | ManualWeld7.C1 = CFrame.new(-0.899986267, 0.199996948, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1) | |
380 | ManualWeld7.Part0 = Part5 | |
381 | ManualWeld7.Part1 = Part1 | |
382 | Part8.Parent = Model4 | |
383 | Part8.Material = Enum.Material.Sand | |
384 | Part8.BrickColor = BrickColor.new("Maroon") | |
385 | Part8.Rotation = Vector3.new(90, -89.9199982, 0) | |
386 | Part8.CanCollide = false | |
387 | Part8.Shape = Enum.PartType.Cylinder | |
388 | Part8.Size = Vector3.new(0.0500000007, 0.150000006, 0.150000006) | |
389 | Part8.CFrame = CFrame.new(-107.363586, 117.400002, -50.6601715, 1.19248673e-08, 0, -0.999998987, -1, -4.37113883e-08, -1.19248815e-08, -4.37113883e-08, 1, -8.88178367e-16) | |
390 | Part8.BottomSurface = Enum.SurfaceType.Smooth | |
391 | Part8.TopSurface = Enum.SurfaceType.Smooth | |
392 | Part8.Color = Color3.new(0.458824, 0, 0) | |
393 | Part8.Position = Vector3.new(-107.363586, 117.400002, -50.6601715) | |
394 | Part8.Orientation = Vector3.new(0, -90, -90) | |
395 | Part8.Color = Color3.new(0.458824, 0, 0) | |
396 | ManualWeld9.Name = "Weld" | |
397 | ManualWeld9.Parent = Part8 | |
398 | ManualWeld9.C0 = CFrame.new(0, 0, 0, 1.19248798e-08, -1, -4.37113883e-08, 0, -4.37113883e-08, 1, -0.99999994, -1.19248806e-08, -5.21253064e-16) | |
399 | ManualWeld9.C1 = CFrame.new(0, 0.200000763, 0.0500030518, 1.19248798e-08, -1, -4.37113883e-08, 0, -4.37113883e-08, 1, -0.99999994, -1.19248806e-08, -5.21253064e-16) | |
400 | ManualWeld9.Part0 = Part8 | |
401 | ManualWeld9.Part1 = Part14 | |
402 | Part10.Parent = Model4 | |
403 | Part10.Material = Enum.Material.Sand | |
404 | Part10.BrickColor = BrickColor.new("Maroon") | |
405 | Part10.Rotation = Vector3.new(90, -89.909996, 0) | |
406 | Part10.CanCollide = false | |
407 | Part10.Shape = Enum.PartType.Cylinder | |
408 | Part10.Size = Vector3.new(0.0500000007, 0.150000006, 0.150000006) | |
409 | Part10.CFrame = CFrame.new(-107.163589, 117.400002, -50.76017, 1.19248647e-08, 0, -0.999998748, -1, -4.37113883e-08, -1.19248824e-08, -4.37113883e-08, 1, -8.88178314e-16) | |
410 | Part10.BottomSurface = Enum.SurfaceType.Smooth | |
411 | Part10.TopSurface = Enum.SurfaceType.Smooth | |
412 | Part10.Color = Color3.new(0.458824, 0, 0) | |
413 | Part10.Position = Vector3.new(-107.163589, 117.400002, -50.76017) | |
414 | Part10.Orientation = Vector3.new(0, -90, -90) | |
415 | Part10.Color = Color3.new(0.458824, 0, 0) | |
416 | ManualWeld11.Name = "Weld" | |
417 | ManualWeld11.Parent = Part10 | |
418 | ManualWeld11.C0 = CFrame.new(0, 0, 0, 1.19248798e-08, -1, -4.37113883e-08, 0, -4.37113883e-08, 1, -0.99999994, -1.19248806e-08, -5.21253064e-16) | |
419 | ManualWeld11.C1 = CFrame.new(0, 0.100002289, -0.149993896, 1.19248762e-08, -1, -4.37113883e-08, 0, -4.37113883e-08, 1, -0.999999702, -1.19248806e-08, -5.21253064e-16) | |
420 | ManualWeld11.Part0 = Part10 | |
421 | ManualWeld11.Part1 = Part14 | |
422 | Part12.Parent = Model4 | |
423 | Part12.Material = Enum.Material.Sand | |
424 | Part12.BrickColor = BrickColor.new("Maroon") | |
425 | Part12.Rotation = Vector3.new(90, -89.909996, 0) | |
426 | Part12.CanCollide = false | |
427 | Part12.Shape = Enum.PartType.Cylinder | |
428 | Part12.Size = Vector3.new(0.0500000007, 0.150000006, 0.150000006) | |
429 | Part12.CFrame = CFrame.new(-107.463585, 117.400002, -50.8601723, 1.19248664e-08, 0, -0.999998868, -1, -4.37113883e-08, -1.19248824e-08, -4.37113883e-08, 1, -8.88178367e-16) | |
430 | Part12.BottomSurface = Enum.SurfaceType.Smooth | |
431 | Part12.TopSurface = Enum.SurfaceType.Smooth | |
432 | Part12.Color = Color3.new(0.458824, 0, 0) | |
433 | Part12.Position = Vector3.new(-107.463585, 117.400002, -50.8601723) | |
434 | Part12.Orientation = Vector3.new(0, -90, -90) | |
435 | Part12.Color = Color3.new(0.458824, 0, 0) | |
436 | ManualWeld13.Name = "Weld" | |
437 | ManualWeld13.Parent = Part12 | |
438 | ManualWeld13.C0 = CFrame.new(0, 0, 0, 1.19248798e-08, -1, -4.37113883e-08, 0, -4.37113883e-08, 1, -0.99999994, -1.19248806e-08, -5.21253064e-16) | |
439 | ManualWeld13.C1 = CFrame.new(0, 0, 0.150001526, 1.1924878e-08, -1, -4.37113883e-08, 0, -4.37113883e-08, 1, -0.999999821, -1.19248806e-08, -5.21253064e-16) | |
440 | ManualWeld13.Part0 = Part12 | |
441 | ManualWeld13.Part1 = Part14 | |
442 | Part14.Parent = Model4 | |
443 | Part14.Material = Enum.Material.Glass | |
444 | Part14.BrickColor = BrickColor.new("Really black") | |
445 | Part14.Rotation = Vector3.new(90, -89.9199982, 0) | |
446 | Part14.CanCollide = false | |
447 | Part14.Shape = Enum.PartType.Cylinder | |
448 | Part14.Size = Vector3.new(0.0500000007, 0.100000001, 0.100000001) | |
449 | Part14.CFrame = CFrame.new(-107.313583, 117.400002, -50.8601723, 1.19248691e-08, 0, -0.999999106, -1, -4.37113883e-08, -1.19248815e-08, -4.37113883e-08, 1, -8.8817842e-16) | |
450 | Part14.BottomSurface = Enum.SurfaceType.Smooth | |
451 | Part14.TopSurface = Enum.SurfaceType.Smooth | |
452 | Part14.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
453 | Part14.Position = Vector3.new(-107.313583, 117.400002, -50.8601723) | |
454 | Part14.Orientation = Vector3.new(0, -90, -90) | |
455 | Part14.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
456 | Part15.Parent = Model4 | |
457 | Part15.Material = Enum.Material.Glass | |
458 | Part15.BrickColor = BrickColor.new("Really black") | |
459 | Part15.Rotation = Vector3.new(90, -89.909996, 0) | |
460 | Part15.CanCollide = false | |
461 | Part15.Shape = Enum.PartType.Cylinder | |
462 | Part15.Size = Vector3.new(0.0500000007, 0.100000001, 0.100000001) | |
463 | Part15.CFrame = CFrame.new(-107.51358, 117.400002, -50.6601753, 1.19248647e-08, 0, -0.999998748, -1, -4.37113883e-08, -1.19248824e-08, -4.37113883e-08, 1, -8.88178314e-16) | |
464 | Part15.BottomSurface = Enum.SurfaceType.Smooth | |
465 | Part15.TopSurface = Enum.SurfaceType.Smooth | |
466 | Part15.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
467 | Part15.Position = Vector3.new(-107.51358, 117.400002, -50.6601753) | |
468 | Part15.Orientation = Vector3.new(0, -90, -90) | |
469 | Part15.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
470 | ManualWeld16.Name = "Weld" | |
471 | ManualWeld16.Parent = Part15 | |
472 | ManualWeld16.C0 = CFrame.new(0, 0, 0, 1.19248798e-08, -1, -4.37113883e-08, 0, -4.37113883e-08, 1, -0.99999994, -1.19248806e-08, -5.21253064e-16) | |
473 | ManualWeld16.C1 = CFrame.new(0, 0.199996948, 0.199996948, 1.19248762e-08, -1, -4.37113883e-08, 0, -4.37113883e-08, 1, -0.999999702, -1.19248806e-08, -5.21253064e-16) | |
474 | ManualWeld16.Part0 = Part15 | |
475 | ManualWeld16.Part1 = Part14 | |
476 | Part17.Parent = Model4 | |
477 | Part17.Material = Enum.Material.Glass | |
478 | Part17.BrickColor = BrickColor.new("Really black") | |
479 | Part17.Rotation = Vector3.new(90, -89.909996, 0) | |
480 | Part17.CanCollide = false | |
481 | Part17.Shape = Enum.PartType.Cylinder | |
482 | Part17.Size = Vector3.new(0.0500000007, 0.100000001, 0.100000001) | |
483 | Part17.CFrame = CFrame.new(-107.01358, 117.400002, -50.7601738, 1.19248647e-08, 3.66925038e-16, -0.999998748, -1, -4.37113883e-08, -1.19248824e-08, -4.37113883e-08, 1, -8.88178314e-16) | |
484 | Part17.BottomSurface = Enum.SurfaceType.Smooth | |
485 | Part17.TopSurface = Enum.SurfaceType.Smooth | |
486 | Part17.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
487 | Part17.Position = Vector3.new(-107.01358, 117.400002, -50.7601738) | |
488 | Part17.Orientation = Vector3.new(0, -90, -90) | |
489 | Part17.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
490 | ManualWeld18.Name = "Weld" | |
491 | ManualWeld18.Parent = Part17 | |
492 | ManualWeld18.C0 = CFrame.new(0, 0, 0, 1.19248798e-08, -1, -4.37113883e-08, 0, -4.37113883e-08, 1, -0.99999994, -1.19248806e-08, -5.21253064e-16) | |
493 | ManualWeld18.C1 = CFrame.new(0, 0.0999984741, -0.300003052, 1.19248762e-08, -1, -4.37113883e-08, 0, -4.37113883e-08, 1, -0.999999702, -1.19248806e-08, -8.8817842e-16) | |
494 | ManualWeld18.Part0 = Part17 | |
495 | ManualWeld18.Part1 = Part14 | |
496 | WedgePart19.Parent = Model4 | |
497 | WedgePart19.Material = Enum.Material.Slate | |
498 | WedgePart19.BrickColor = BrickColor.new("Deep orange") | |
499 | WedgePart19.Rotation = Vector3.new(0, 0, -90) | |
500 | WedgePart19.CanCollide = false | |
501 | WedgePart19.Size = Vector3.new(0.0999999046, 0.900000036, 0.299999982) | |
502 | WedgePart19.CFrame = CFrame.new(-107.213608, 117.349991, -50.9101715, 1.19248655e-08, 0.999998808, 1.8893631e-16, -1, 1.19248815e-08, 8.4689259e-24, -3.15544362e-30, 1.88936258e-16, 1) | |
503 | WedgePart19.BottomSurface = Enum.SurfaceType.Smooth | |
504 | WedgePart19.Color = Color3.new(1, 0.690196, 0) | |
505 | WedgePart19.Position = Vector3.new(-107.213608, 117.349991, -50.9101715) | |
506 | WedgePart19.Orientation = Vector3.new(0, 0, -90) | |
507 | WedgePart19.Color = Color3.new(1, 0.690196, 0) | |
508 | ManualWeld20.Name = "Weld" | |
509 | ManualWeld20.Parent = WedgePart19 | |
510 | ManualWeld20.C0 = CFrame.new(0, 0, 0, 1.19248806e-08, -1, 0, 1, 1.19248806e-08, 0, 0, 0, 1) | |
511 | ManualWeld20.C1 = CFrame.new(0.0500106812, -0.0499992371, -0.0999755859, 1.19248771e-08, -1, -4.37113883e-08, -1.77988992e-16, -4.37113883e-08, 1, -0.999999702, -1.19248806e-08, -7.10189534e-16) | |
512 | ManualWeld20.Part0 = WedgePart19 | |
513 | ManualWeld20.Part1 = Part14 | |
514 | WedgePart21.Parent = Model4 | |
515 | WedgePart21.Material = Enum.Material.Slate | |
516 | WedgePart21.BrickColor = BrickColor.new("Deep orange") | |
517 | WedgePart21.Rotation = Vector3.new(180, 0, -90) | |
518 | WedgePart21.CanCollide = false | |
519 | WedgePart21.Size = Vector3.new(0.0999999046, 0.900000036, 0.299999982) | |
520 | WedgePart21.CFrame = CFrame.new(-107.213608, 117.349991, -50.6101723, 1.19248673e-08, 0.999998808, -3.66924985e-16, 1, -1.19248798e-08, -1.98419059e-09, -1.98419059e-09, 2.12597488e-16, -1) | |
521 | WedgePart21.BottomSurface = Enum.SurfaceType.Smooth | |
522 | WedgePart21.Color = Color3.new(1, 0.690196, 0) | |
523 | WedgePart21.Position = Vector3.new(-107.213608, 117.349991, -50.6101723) | |
524 | WedgePart21.Orientation = Vector3.new(0, -180, 90) | |
525 | WedgePart21.Color = Color3.new(1, 0.690196, 0) | |
526 | ManualWeld22.Name = "Weld" | |
527 | ManualWeld22.Parent = WedgePart21 | |
528 | ManualWeld22.C0 = CFrame.new(0, 0, 0, 1.19248806e-08, 1, -1.98419059e-09, 1, -1.19248806e-08, -1.54327709e-16, 0, -1.98419059e-09, -1) | |
529 | ManualWeld22.C1 = CFrame.new(0.0500106812, 0.25, -0.0999755859, 1.19248762e-08, -1, -4.37113883e-08, 0, -4.37113883e-08, 1, -0.999999702, -1.19248806e-08, -8.8817842e-16) | |
530 | ManualWeld22.Part0 = WedgePart21 | |
531 | ManualWeld22.Part1 = Part14 | |
532 | Model23.Name = "pizza5" | |
533 | Model23.Parent = Model0 | |
534 | Part24.Name = "crust" | |
535 | Part24.Parent = Model23 | |
536 | Part24.Material = Enum.Material.Sand | |
537 | Part24.BrickColor = BrickColor.new("Gold") | |
538 | Part24.Rotation = Vector3.new(0, 56, 0) | |
539 | Part24.CanCollide = false | |
540 | Part24.Shape = Enum.PartType.Cylinder | |
541 | Part24.Size = Vector3.new(0.599999964, 0.200000003, 0.200000003) | |
542 | Part24.CFrame = CFrame.new(-105.98745, 117.399963, -50.2229347, 0.559193969, 0, 0.82903868, 0, 1, 0, -0.82903868, 0, 0.559193969) | |
543 | Part24.BottomSurface = Enum.SurfaceType.Smooth | |
544 | Part24.TopSurface = Enum.SurfaceType.Smooth | |
545 | Part24.Color = Color3.new(0.937255, 0.721569, 0.219608) | |
546 | Part24.Position = Vector3.new(-105.98745, 117.399963, -50.2229347) | |
547 | Part24.Orientation = Vector3.new(0, 56, 0) | |
548 | Part24.Color = Color3.new(0.937255, 0.721569, 0.219608) | |
549 | ManualWeld25.Name = "Weld" | |
550 | ManualWeld25.Parent = Part24 | |
551 | ManualWeld25.C0 = CFrame.new(0, 0, 0, 0.559193254, 0, -0.829037428, 0, 1, 0, 0.829037428, 0, 0.559193254) | |
552 | ManualWeld25.C1 = CFrame.new(0, -0.100017548, 0.349967957, 0, -1, 0, 0.559193432, 0, -0.829037726, 0.829037726, 0, 0.559193432) | |
553 | ManualWeld25.Part0 = Part24 | |
554 | ManualWeld25.Part1 = Part27 | |
555 | ManualWeld26.Name = "Weld" | |
556 | ManualWeld26.Parent = Part24 | |
557 | ManualWeld26.C0 = CFrame.new(0, 0, 0, 0.559193969, 0, -0.82903868, 0, 1, 0, 0.82903868, 0, 0.559193969) | |
558 | ManualWeld26.C1 = CFrame.new(0.826156616, 0.199966431, 0.53723526, 1, 0, 0, 0, 1, 0, 0, 0, 1) | |
559 | ManualWeld26.Part0 = Part24 | |
560 | ManualWeld26.Part1 = Part1 | |
561 | Part27.Parent = Model23 | |
562 | Part27.Material = Enum.Material.Sand | |
563 | Part27.BrickColor = BrickColor.new("Maroon") | |
564 | Part27.Rotation = Vector3.new(0, 56, -90) | |
565 | Part27.CanCollide = false | |
566 | Part27.Shape = Enum.PartType.Cylinder | |
567 | Part27.Size = Vector3.new(0.0500000007, 0.150000006, 0.150000006) | |
568 | Part27.CFrame = CFrame.new(-106.221657, 117.399963, -50.5015526, 0, 0.559194207, 0.829039097, -1, 0, 0, 0, -0.829039097, 0.559194207) | |
569 | Part27.BottomSurface = Enum.SurfaceType.Smooth | |
570 | Part27.TopSurface = Enum.SurfaceType.Smooth | |
571 | Part27.Color = Color3.new(0.458824, 0, 0) | |
572 | Part27.Position = Vector3.new(-106.221657, 117.399963, -50.5015526) | |
573 | Part27.Orientation = Vector3.new(0, 56, -90) | |
574 | Part27.Color = Color3.new(0.458824, 0, 0) | |
575 | Part28.Parent = Model23 | |
576 | Part28.Material = Enum.Material.Sand | |
577 | Part28.BrickColor = BrickColor.new("Maroon") | |
578 | Part28.Rotation = Vector3.new(0, 56, -90) | |
579 | Part28.CanCollide = false | |
580 | Part28.Shape = Enum.PartType.Cylinder | |
581 | Part28.Size = Vector3.new(0.0500000007, 0.150000006, 0.150000006) | |
582 | Part28.CFrame = CFrame.new(-106.443398, 117.399963, -50.5304909, 0, 0.559194267, 0.829039216, -1, 0, 0, 0, -0.829039216, 0.559194267) | |
583 | Part28.BottomSurface = Enum.SurfaceType.Smooth | |
584 | Part28.TopSurface = Enum.SurfaceType.Smooth | |
585 | Part28.Color = Color3.new(0.458824, 0, 0) | |
586 | Part28.Position = Vector3.new(-106.443398, 117.399963, -50.5304909) | |
587 | Part28.Orientation = Vector3.new(0, 56, -90) | |
588 | Part28.Color = Color3.new(0.458824, 0, 0) | |
589 | ManualWeld29.Name = "Weld" | |
590 | ManualWeld29.Parent = Part28 | |
591 | ManualWeld29.C0 = CFrame.new(0, 0, 0, 0, -1, 0, 0.559193254, 0, -0.829037428, 0.829037428, 0, 0.559193254) | |
592 | ManualWeld29.C1 = CFrame.new(0, -0.100006104, -0.200012207, 0, -1, 0, 0.559193254, 0, -0.829037428, 0.829037428, 0, 0.559193254) | |
593 | ManualWeld29.Part0 = Part28 | |
594 | ManualWeld29.Part1 = Part27 | |
595 | Part30.Parent = Model23 | |
596 | Part30.Material = Enum.Material.Sand | |
597 | Part30.BrickColor = BrickColor.new("Maroon") | |
598 | Part30.Rotation = Vector3.new(0, 56, -90) | |
599 | Part30.CanCollide = false | |
600 | Part30.Shape = Enum.PartType.Cylinder | |
601 | Part30.Size = Vector3.new(0.0500000007, 0.150000006, 0.150000006) | |
602 | Part30.CFrame = CFrame.new(-106.250664, 117.399963, -50.2798347, 0, 0.559194386, 0.829039395, -1, 0, 0, 0, -0.829039395, 0.559194386) | |
603 | Part30.BottomSurface = Enum.SurfaceType.Smooth | |
604 | Part30.TopSurface = Enum.SurfaceType.Smooth | |
605 | Part30.Color = Color3.new(0.458824, 0, 0) | |
606 | Part30.Position = Vector3.new(-106.250664, 117.399963, -50.2798347) | |
607 | Part30.Orientation = Vector3.new(0, 56, -90) | |
608 | Part30.Color = Color3.new(0.458824, 0, 0) | |
609 | ManualWeld31.Name = "Weld" | |
610 | ManualWeld31.Parent = Part30 | |
611 | ManualWeld31.C0 = CFrame.new(0, 0, 0, 0, -1, 0, 0.559193254, 0, -0.829037428, 0.829037428, 0, 0.559193254) | |
612 | ManualWeld31.C1 = CFrame.new(0, -0.200031281, 0.099937439, 0, -1, 0, 0.559193313, 0, -0.829037547, 0.829037547, 0, 0.559193313) | |
613 | ManualWeld31.Part0 = Part30 | |
614 | ManualWeld31.Part1 = Part27 | |
615 | Part32.Parent = Model23 | |
616 | Part32.Material = Enum.Material.Glass | |
617 | Part32.BrickColor = BrickColor.new("Really black") | |
618 | Part32.Rotation = Vector3.new(0, 56, -90) | |
619 | Part32.CanCollide = false | |
620 | Part32.Shape = Enum.PartType.Cylinder | |
621 | Part32.Size = Vector3.new(0.0500000007, 0.100000001, 0.100000001) | |
622 | Part32.CFrame = CFrame.new(-106.374992, 117.399963, -50.3637123, 0, 0.559194446, 0.829039514, -1, 0, 0, 0, -0.829039514, 0.559194446) | |
623 | Part32.BottomSurface = Enum.SurfaceType.Smooth | |
624 | Part32.TopSurface = Enum.SurfaceType.Smooth | |
625 | Part32.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
626 | Part32.Position = Vector3.new(-106.374992, 117.399963, -50.3637123) | |
627 | Part32.Orientation = Vector3.new(0, 56, -90) | |
628 | Part32.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
629 | ManualWeld33.Name = "Weld" | |
630 | ManualWeld33.Parent = Part32 | |
631 | ManualWeld33.C0 = CFrame.new(0, 0, 0, 0, -1, 0, 0.559193254, 0, -0.829037428, 0.829037428, 0, 0.559193254) | |
632 | ManualWeld33.C1 = CFrame.new(0, -0.200019836, -0.0500411987, 0, -1, 0, 0.559193432, 0, -0.829037726, 0.829037726, 0, 0.559193432) | |
633 | ManualWeld33.Part0 = Part32 | |
634 | ManualWeld33.Part1 = Part27 | |
635 | Part34.Parent = Model23 | |
636 | Part34.Material = Enum.Material.Glass | |
637 | Part34.BrickColor = BrickColor.new("Really black") | |
638 | Part34.Rotation = Vector3.new(0, 56, -90) | |
639 | Part34.CanCollide = false | |
640 | Part34.Shape = Enum.PartType.Cylinder | |
641 | Part34.Size = Vector3.new(0.0500000007, 0.100000001, 0.100000001) | |
642 | Part34.CFrame = CFrame.new(-106.097313, 117.399963, -50.4176826, 0, 0.559194446, 0.829039514, -1, 0, 0, 0, -0.829039514, 0.559194446) | |
643 | Part34.BottomSurface = Enum.SurfaceType.Smooth | |
644 | Part34.TopSurface = Enum.SurfaceType.Smooth | |
645 | Part34.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
646 | Part34.Position = Vector3.new(-106.097313, 117.399963, -50.4176826) | |
647 | Part34.Orientation = Vector3.new(0, 56, -90) | |
648 | Part34.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
649 | ManualWeld35.Name = "Weld" | |
650 | ManualWeld35.Parent = Part34 | |
651 | ManualWeld35.C0 = CFrame.new(0, 0, 0, 0, -1, 0, 0.559193254, 0, -0.829037428, 0.829037428, 0, 0.559193254) | |
652 | ManualWeld35.C1 = CFrame.new(0, 0, 0.149986267, 0, -1, 0, 0.559193432, 0, -0.829037726, 0.829037726, 0, 0.559193432) | |
653 | ManualWeld35.Part0 = Part34 | |
654 | ManualWeld35.Part1 = Part27 | |
655 | Part36.Parent = Model23 | |
656 | Part36.Material = Enum.Material.Glass | |
657 | Part36.BrickColor = BrickColor.new("Really black") | |
658 | Part36.Rotation = Vector3.new(0, 56, -90) | |
659 | Part36.CanCollide = false | |
660 | Part36.Shape = Enum.PartType.Cylinder | |
661 | Part36.Size = Vector3.new(0.0500000007, 0.100000001, 0.100000001) | |
662 | Part36.CFrame = CFrame.new(-106.56778, 117.399963, -50.6143684, 0, 0.559194446, 0.829039514, -1, 0, 0, 0, -0.829039514, 0.559194446) | |
663 | Part36.BottomSurface = Enum.SurfaceType.Smooth | |
664 | Part36.TopSurface = Enum.SurfaceType.Smooth | |
665 | Part36.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
666 | Part36.Position = Vector3.new(-106.56778, 117.399963, -50.6143684) | |
667 | Part36.Orientation = Vector3.new(0, 56, -90) | |
668 | Part36.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
669 | ManualWeld37.Name = "Weld" | |
670 | ManualWeld37.Parent = Part36 | |
671 | ManualWeld37.C0 = CFrame.new(0, 0, 0, 0, -1, 0, 0.559193254, 0, -0.829037428, 0.829037428, 0, 0.559193254) | |
672 | ManualWeld37.C1 = CFrame.new(0, -0.100021362, -0.350036621, 0, -1, 0, 0.559193432, 0, -0.829037726, 0.829037726, 0, 0.559193432) | |
673 | ManualWeld37.Part0 = Part36 | |
674 | ManualWeld37.Part1 = Part27 | |
675 | WedgePart38.Parent = Model23 | |
676 | WedgePart38.Material = Enum.Material.Slate | |
677 | WedgePart38.BrickColor = BrickColor.new("Deep orange") | |
678 | WedgePart38.Rotation = Vector3.new(-180, 34, 90) | |
679 | WedgePart38.CanCollide = false | |
680 | WedgePart38.Size = Vector3.new(0.0999999046, 0.900000036, 0.299999982) | |
681 | WedgePart38.CFrame = CFrame.new(-106.485817, 117.349953, -50.3781624, 0, -0.829039633, 0.559194684, -1, 0, 0, 0, -0.559194684, -0.829039633) | |
682 | WedgePart38.BottomSurface = Enum.SurfaceType.Smooth | |
683 | WedgePart38.Color = Color3.new(1, 0.690196, 0) | |
684 | WedgePart38.Position = Vector3.new(-106.485817, 117.349953, -50.3781624) | |
685 | WedgePart38.Orientation = Vector3.new(0, 146, -90) | |
686 | WedgePart38.Color = Color3.new(1, 0.690196, 0) | |
687 | ManualWeld39.Name = "Weld" | |
688 | ManualWeld39.Parent = WedgePart38 | |
689 | ManualWeld39.C0 = CFrame.new(0, 0, 0, 0, -1, 0, -0.829037428, 0, -0.559193254, 0.559193254, 0, -0.829037428) | |
690 | ManualWeld39.C1 = CFrame.new(0.0500106812, -0.250011444, -0.150001526, 0, -1, 0, 0.559193492, 0, -0.829037845, 0.829037845, 0, 0.559193492) | |
691 | ManualWeld39.Part0 = WedgePart38 | |
692 | ManualWeld39.Part1 = Part27 | |
693 | WedgePart40.Parent = Model23 | |
694 | WedgePart40.Material = Enum.Material.Slate | |
695 | WedgePart40.BrickColor = BrickColor.new("Deep orange") | |
696 | WedgePart40.Rotation = Vector3.new(0, -34, 90) | |
697 | WedgePart40.CanCollide = false | |
698 | WedgePart40.Size = Vector3.new(0.0999999046, 0.900000036, 0.299999982) | |
699 | WedgePart40.CFrame = CFrame.new(-106.318077, 117.349953, -50.6268692, 0, -0.829039812, -0.559194803, 1, 0, -0, 0, -0.559194803, 0.829039812) | |
700 | WedgePart40.BottomSurface = Enum.SurfaceType.Smooth | |
701 | WedgePart40.Color = Color3.new(1, 0.690196, 0) | |
702 | WedgePart40.Position = Vector3.new(-106.318077, 117.349953, -50.6268692) | |
703 | WedgePart40.Orientation = Vector3.new(0, -34, 90) | |
704 | WedgePart40.Color = Color3.new(1, 0.690196, 0) | |
705 | ManualWeld41.Name = "Weld" | |
706 | ManualWeld41.Parent = WedgePart40 | |
707 | ManualWeld41.C0 = CFrame.new(0, 0, 0, 0, 1, 0, -0.829037428, 0, -0.559193254, -0.559193254, 0, 0.829037428) | |
708 | ManualWeld41.C1 = CFrame.new(0.0500106812, 0.0499763489, -0.150009155, 0, -1, 0, 0.559193611, 0, -0.829038084, 0.829038084, 0, 0.559193611) | |
709 | ManualWeld41.Part0 = WedgePart40 | |
710 | ManualWeld41.Part1 = Part27 | |
711 | Model42.Name = "pizza6" | |
712 | Model42.Parent = Model0 | |
713 | Part43.Name = "crust" | |
714 | Part43.Parent = Model42 | |
715 | Part43.Material = Enum.Material.Sand | |
716 | Part43.BrickColor = BrickColor.new("Gold") | |
717 | Part43.Rotation = Vector3.new(-180, 88, -180) | |
718 | Part43.CanCollide = false | |
719 | Part43.Shape = Enum.PartType.Cylinder | |
720 | Part43.Size = Vector3.new(0.599999964, 0.200000003, 0.200000003) | |
721 | Part43.CFrame = CFrame.new(-105.826599, 117.399223, -50.7877426, -0.0349009819, 0, 0.999390781, 0, 1, 0, -0.999390781, 0, -0.034901008) | |
722 | Part43.BottomSurface = Enum.SurfaceType.Smooth | |
723 | Part43.TopSurface = Enum.SurfaceType.Smooth | |
724 | Part43.Color = Color3.new(0.937255, 0.721569, 0.219608) | |
725 | Part43.Position = Vector3.new(-105.826599, 117.399223, -50.7877426) | |
726 | Part43.Orientation = Vector3.new(0, 92, 0) | |
727 | Part43.Color = Color3.new(0.937255, 0.721569, 0.219608) | |
728 | ManualWeld44.Name = "Weld" | |
729 | ManualWeld44.Parent = Part43 | |
730 | ManualWeld44.C0 = CFrame.new(0, 0, 0, -0.0349009931, 0, -0.999390781, 0, 1, 0, 0.999390781, 0, -0.0349009968) | |
731 | ManualWeld44.C1 = CFrame.new(0, -0.100028992, 0.350021362, 0, -1, 0, -0.0349009894, 0, -0.999390781, 0.999390781, 0, -0.0349010006) | |
732 | ManualWeld44.Part0 = Part43 | |
733 | ManualWeld44.Part1 = Part46 | |
734 | ManualWeld45.Name = "Weld" | |
735 | ManualWeld45.Parent = Part43 | |
736 | ManualWeld45.C0 = CFrame.new(0, 0, 0, -0.0349009819, 0, -0.999390781, 0, 1, 0, 0.999390781, 0, -0.034901008) | |
737 | ManualWeld45.C1 = CFrame.new(0.987007141, 0.199226379, -0.0275726318, 1, 0, 0, 0, 1, 0, 0, 0, 1) | |
738 | ManualWeld45.Part0 = Part43 | |
739 | ManualWeld45.Part1 = Part1 | |
740 | Part46.Parent = Model42 | |
741 | Part46.Material = Enum.Material.Sand | |
742 | Part46.BrickColor = BrickColor.new("Maroon") | |
743 | Part46.Rotation = Vector3.new(-180, 88, 90) | |
744 | Part46.CanCollide = false | |
745 | Part46.Shape = Enum.PartType.Cylinder | |
746 | Part46.Size = Vector3.new(0.0500000007, 0.150000006, 0.150000006) | |
747 | Part46.CFrame = CFrame.new(-106.179901, 117.399223, -50.8754959, 0, -0.0349009745, 0.999390781, -1, 0, 0, 0, -0.999390781, -0.0349010155) | |
748 | Part46.BottomSurface = Enum.SurfaceType.Smooth | |
749 | Part46.TopSurface = Enum.SurfaceType.Smooth | |
750 | Part46.Color = Color3.new(0.458824, 0, 0) | |
751 | Part46.Position = Vector3.new(-106.179901, 117.399223, -50.8754959) | |
752 | Part46.Orientation = Vector3.new(0, 92, -90) | |
753 | Part46.Color = Color3.new(0.458824, 0, 0) | |
754 | Part47.Parent = Model42 | |
755 | Part47.Material = Enum.Material.Sand | |
756 | Part47.BrickColor = BrickColor.new("Maroon") | |
757 | Part47.Rotation = Vector3.new(-180, 88, 90) | |
758 | Part47.CanCollide = false | |
759 | Part47.Shape = Enum.PartType.Cylinder | |
760 | Part47.Size = Vector3.new(0.0500000007, 0.150000006, 0.150000006) | |
761 | Part47.CFrame = CFrame.new(-106.376282, 117.399223, -50.7685394, 0, -0.034900967, 0.999390781, -1, 0, 0, 0, -0.999390781, -0.0349010229) | |
762 | Part47.BottomSurface = Enum.SurfaceType.Smooth | |
763 | Part47.TopSurface = Enum.SurfaceType.Smooth | |
764 | Part47.Color = Color3.new(0.458824, 0, 0) | |
765 | Part47.Position = Vector3.new(-106.376282, 117.399223, -50.7685394) | |
766 | Part47.Orientation = Vector3.new(0, 92, -90) | |
767 | Part47.Color = Color3.new(0.458824, 0, 0) | |
768 | ManualWeld48.Name = "Weld" | |
769 | ManualWeld48.Parent = Part47 | |
770 | ManualWeld48.C0 = CFrame.new(0, 0, 0, 0, -1, 0, -0.0349009931, 0, -0.999390781, 0.999390781, 0, -0.0349009968) | |
771 | ManualWeld48.C1 = CFrame.new(0, -0.100036621, -0.199996948, 0, -1, 0, -0.0349009894, 0, -0.999390781, 0.999390781, 0, -0.0349010006) | |
772 | ManualWeld48.Part0 = Part47 | |
773 | ManualWeld48.Part1 = Part46 | |
774 | Part49.Parent = Model42 | |
775 | Part49.Material = Enum.Material.Sand | |
776 | Part49.BrickColor = BrickColor.new("Maroon") | |
777 | Part49.Rotation = Vector3.new(-180, 88, 90) | |
778 | Part49.CanCollide = false | |
779 | Part49.Shape = Enum.PartType.Cylinder | |
780 | Part49.Size = Vector3.new(0.0500000007, 0.150000006, 0.150000006) | |
781 | Part49.CFrame = CFrame.new(-106.072975, 117.399223, -50.6790924, 0, -0.0349009708, 0.999390781, -1, 0, 0, 0, -0.999390781, -0.0349010192) | |
782 | Part49.BottomSurface = Enum.SurfaceType.Smooth | |
783 | Part49.TopSurface = Enum.SurfaceType.Smooth | |
784 | Part49.Color = Color3.new(0.458824, 0, 0) | |
785 | Part49.Position = Vector3.new(-106.072975, 117.399223, -50.6790924) | |
786 | Part49.Orientation = Vector3.new(0, 92, -90) | |
787 | Part49.Color = Color3.new(0.458824, 0, 0) | |
788 | ManualWeld50.Name = "Weld" | |
789 | ManualWeld50.Parent = Part49 | |
790 | ManualWeld50.C0 = CFrame.new(0, 0, 0, 0, -1, 0, -0.0349009931, 0, -0.999390781, 0.999390781, 0, -0.0349009968) | |
791 | ManualWeld50.C1 = CFrame.new(0, -0.200016022, 0.100006104, 0, -1, 0, -0.0349009931, 0, -0.999390781, 0.999390781, 0, -0.0349009968) | |
792 | ManualWeld50.Part0 = Part49 | |
793 | ManualWeld50.Part1 = Part46 | |
794 | Part51.Parent = Model42 | |
795 | Part51.Material = Enum.Material.Glass | |
796 | Part51.BrickColor = BrickColor.new("Really black") | |
797 | Part51.Rotation = Vector3.new(-180, 88, 90) | |
798 | Part51.CanCollide = false | |
799 | Part51.Shape = Enum.PartType.Cylinder | |
800 | Part51.Size = Vector3.new(0.0500000007, 0.100000001, 0.100000001) | |
801 | Part51.CFrame = CFrame.new(-106.222885, 117.399223, -50.6738472, 0, -0.034900967, 0.999390781, -1, 0, 0, 0, -0.999390781, -0.0349010229) | |
802 | Part51.BottomSurface = Enum.SurfaceType.Smooth | |
803 | Part51.TopSurface = Enum.SurfaceType.Smooth | |
804 | Part51.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
805 | Part51.Position = Vector3.new(-106.222885, 117.399223, -50.6738472) | |
806 | Part51.Orientation = Vector3.new(0, 92, -90) | |
807 | Part51.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
808 | ManualWeld52.Name = "Weld" | |
809 | ManualWeld52.Parent = Part51 | |
810 | ManualWeld52.C0 = CFrame.new(0, 0, 0, 0, -1, 0, -0.0349009931, 0, -0.999390781, 0.999390781, 0, -0.0349009968) | |
811 | ManualWeld52.C1 = CFrame.new(0, -0.200027466, -0.0499954224, 0, -1, 0, -0.0349009894, 0, -0.999390781, 0.999390781, 0, -0.0349010006) | |
812 | ManualWeld52.Part0 = Part51 | |
813 | ManualWeld52.Part1 = Part46 | |
814 | Part53.Parent = Model42 | |
815 | Part53.Material = Enum.Material.Glass | |
816 | Part53.BrickColor = BrickColor.new("Really black") | |
817 | Part53.Rotation = Vector3.new(-180, 88, 90) | |
818 | Part53.CanCollide = false | |
819 | Part53.Shape = Enum.PartType.Cylinder | |
820 | Part53.Size = Vector3.new(0.0500000007, 0.100000001, 0.100000001) | |
821 | Part53.CFrame = CFrame.new(-106.029938, 117.399223, -50.8806839, 0, -0.034900967, 0.999390781, -1, 0, 0, 0, -0.999390781, -0.0349010229) | |
822 | Part53.BottomSurface = Enum.SurfaceType.Smooth | |
823 | Part53.TopSurface = Enum.SurfaceType.Smooth | |
824 | Part53.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
825 | Part53.Position = Vector3.new(-106.029938, 117.399223, -50.8806839) | |
826 | Part53.Orientation = Vector3.new(0, 92, -90) | |
827 | Part53.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
828 | ManualWeld54.Name = "Weld" | |
829 | ManualWeld54.Parent = Part53 | |
830 | ManualWeld54.C0 = CFrame.new(0, 0, 0, 0, -1, 0, -0.0349009931, 0, -0.999390781, 0.999390781, 0, -0.0349009968) | |
831 | ManualWeld54.C1 = CFrame.new(0, -4.95910645e-05, 0.150054932, 0, -1, 0, -0.0349009894, 0, -0.999390781, 0.999390781, 0, -0.0349010006) | |
832 | ManualWeld54.Part0 = Part53 | |
833 | ManualWeld54.Part1 = Part46 | |
834 | Part55.Parent = Model42 | |
835 | Part55.Material = Enum.Material.Glass | |
836 | Part55.BrickColor = BrickColor.new("Really black") | |
837 | Part55.Rotation = Vector3.new(-180, 88, 90) | |
838 | Part55.CanCollide = false | |
839 | Part55.Shape = Enum.PartType.Cylinder | |
840 | Part55.Size = Vector3.new(0.0500000007, 0.100000001, 0.100000001) | |
841 | Part55.CFrame = CFrame.new(-106.526176, 117.399223, -50.7633133, 0, -0.034900967, 0.999390781, -1, 0, 0, 0, -0.999390781, -0.0349010229) | |
842 | Part55.BottomSurface = Enum.SurfaceType.Smooth | |
843 | Part55.TopSurface = Enum.SurfaceType.Smooth | |
844 | Part55.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
845 | Part55.Position = Vector3.new(-106.526176, 117.399223, -50.7633133) | |
846 | Part55.Orientation = Vector3.new(0, 92, -90) | |
847 | Part55.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
848 | ManualWeld56.Name = "Weld" | |
849 | ManualWeld56.Parent = Part55 | |
850 | ManualWeld56.C0 = CFrame.new(0, 0, 0, 0, -1, 0, -0.0349009931, 0, -0.999390781, 0.999390781, 0, -0.0349009968) | |
851 | ManualWeld56.C1 = CFrame.new(0, -0.100028992, -0.349983215, 0, -1, 0, -0.0349009894, 0, -0.999390781, 0.999390781, 0, -0.0349010006) | |
852 | ManualWeld56.Part0 = Part55 | |
853 | ManualWeld56.Part1 = Part46 | |
854 | WedgePart57.Parent = Model42 | |
855 | WedgePart57.Material = Enum.Material.Slate | |
856 | WedgePart57.BrickColor = BrickColor.new("Deep orange") | |
857 | WedgePart57.Rotation = Vector3.new(-180, -2, 90) | |
858 | WedgePart57.CanCollide = false | |
859 | WedgePart57.Size = Vector3.new(0.0999999046, 0.900000036, 0.299999982) | |
860 | WedgePart57.CFrame = CFrame.new(-106.321022, 117.349258, -50.6203804, 0, -0.999390781, -0.0349009708, -1, -0, 0, 0, 0.0349010192, -0.999390781) | |
861 | WedgePart57.BottomSurface = Enum.SurfaceType.Smooth | |
862 | WedgePart57.Color = Color3.new(1, 0.690196, 0) | |
863 | WedgePart57.Position = Vector3.new(-106.321022, 117.349258, -50.6203804) | |
864 | WedgePart57.Orientation = Vector3.new(0, -178, -90) | |
865 | WedgePart57.Color = Color3.new(1, 0.690196, 0) | |
866 | ManualWeld58.Name = "Weld" | |
867 | ManualWeld58.Parent = WedgePart57 | |
868 | ManualWeld58.C0 = CFrame.new(0, 0, 0, 0, -1, 0, -0.999390781, 0, 0.0349009931, -0.0349009968, 0, -0.999390781) | |
869 | ManualWeld58.C1 = CFrame.new(0.0499649048, -0.250034332, -0.149940491, 0, -1, 0, -0.0349009894, 0, -0.999390781, 0.999390781, 0, -0.0349010006) | |
870 | ManualWeld58.Part0 = WedgePart57 | |
871 | ManualWeld58.Part1 = Part46 | |
872 | WedgePart59.Parent = Model42 | |
873 | WedgePart59.Material = Enum.Material.Slate | |
874 | WedgePart59.BrickColor = BrickColor.new("Deep orange") | |
875 | WedgePart59.Rotation = Vector3.new(0, 2, 90) | |
876 | WedgePart59.CanCollide = false | |
877 | WedgePart59.Size = Vector3.new(0.0999999046, 0.900000036, 0.299999982) | |
878 | WedgePart59.CFrame = CFrame.new(-106.331512, 117.349258, -50.9202232, 0, -0.999390781, 0.034900967, 1, -0, -0, -0, 0.0349010229, 0.999390781) | |
879 | WedgePart59.BottomSurface = Enum.SurfaceType.Smooth | |
880 | WedgePart59.Color = Color3.new(1, 0.690196, 0) | |
881 | WedgePart59.Position = Vector3.new(-106.331512, 117.349258, -50.9202232) | |
882 | WedgePart59.Orientation = Vector3.new(0, 2, 90) | |
883 | WedgePart59.Color = Color3.new(1, 0.690196, 0) | |
884 | ManualWeld60.Name = "Weld" | |
885 | ManualWeld60.Parent = WedgePart59 | |
886 | ManualWeld60.C0 = CFrame.new(0, 0, 0, 0, 1, 0, -0.999390781, 0, 0.0349009931, 0.0349009968, 0, 0.999390781) | |
887 | ManualWeld60.C1 = CFrame.new(0.0499649048, 0.0499916077, -0.14995575, 0, -1, 0, -0.0349009857, 0, -0.999390781, 0.999390781, 0, -0.0349010043) | |
888 | ManualWeld60.Part0 = WedgePart59 | |
889 | ManualWeld60.Part1 = Part46 | |
890 | Model61.Name = "pizza3" | |
891 | Model61.Parent = Model0 | |
892 | Part62.Name = "crust" | |
893 | Part62.Parent = Model61 | |
894 | Part62.Material = Enum.Material.Sand | |
895 | Part62.BrickColor = BrickColor.new("Gold") | |
896 | Part62.Rotation = Vector3.new(0, -17, 0) | |
897 | Part62.CanCollide = false | |
898 | Part62.Shape = Enum.PartType.Cylinder | |
899 | Part62.Size = Vector3.new(0.599999964, 0.200000003, 0.200000003) | |
900 | Part62.CFrame = CFrame.new(-107.039063, 117.400047, -49.8592834, 0.956304371, 0, -0.292371809, 0, 1, 0, 0.292371809, 0, 0.956304371) | |
901 | Part62.BottomSurface = Enum.SurfaceType.Smooth | |
902 | Part62.TopSurface = Enum.SurfaceType.Smooth | |
903 | Part62.Color = Color3.new(0.937255, 0.721569, 0.219608) | |
904 | Part62.Position = Vector3.new(-107.039063, 117.400047, -49.8592834) | |
905 | Part62.Orientation = Vector3.new(0, -17, 0) | |
906 | Part62.Color = Color3.new(0.937255, 0.721569, 0.219608) | |
907 | ManualWeld63.Name = "Weld" | |
908 | ManualWeld63.Parent = Part62 | |
909 | ManualWeld63.C0 = CFrame.new(0, 0, 0, 0.956304669, 0, 0.292371869, 0, 1, 0, -0.292371869, 0, 0.956304669) | |
910 | ManualWeld63.C1 = CFrame.new(0, 0.0999755859, 0.250007629, 0, -1, 0, 0.956304669, 0, 0.292371869, -0.292371869, 0, 0.956304669) | |
911 | ManualWeld63.Part0 = Part62 | |
912 | ManualWeld63.Part1 = Part69 | |
913 | ManualWeld64.Name = "Weld" | |
914 | ManualWeld64.Parent = Part62 | |
915 | ManualWeld64.C0 = CFrame.new(0, 0, 0, 0.956304371, 0, 0.292371809, 0, 1, 0, -0.292371809, 0, 0.956304371) | |
916 | ManualWeld64.C1 = CFrame.new(-0.225456238, 0.200050354, 0.900886536, 1, 0, 0, 0, 1, 0, 0, 0, 1) | |
917 | ManualWeld64.Part0 = Part62 | |
918 | ManualWeld64.Part1 = Part1 | |
919 | Part65.Parent = Model61 | |
920 | Part65.Material = Enum.Material.Sand | |
921 | Part65.BrickColor = BrickColor.new("Maroon") | |
922 | Part65.Rotation = Vector3.new(0, -17, -90) | |
923 | Part65.CanCollide = false | |
924 | Part65.Shape = Enum.PartType.Cylinder | |
925 | Part65.Size = Vector3.new(0.0500000007, 0.150000006, 0.150000006) | |
926 | Part65.CFrame = CFrame.new(-106.841072, 117.400047, -50.1647644, 0, 0.956304133, -0.29237175, -1, 0, 0, 0, 0.29237175, 0.956304133) | |
927 | Part65.BottomSurface = Enum.SurfaceType.Smooth | |
928 | Part65.TopSurface = Enum.SurfaceType.Smooth | |
929 | Part65.Color = Color3.new(0.458824, 0, 0) | |
930 | Part65.Position = Vector3.new(-106.841072, 117.400047, -50.1647644) | |
931 | Part65.Orientation = Vector3.new(0, -17, -90) | |
932 | Part65.Color = Color3.new(0.458824, 0, 0) | |
933 | ManualWeld66.Name = "Weld" | |
934 | ManualWeld66.Parent = Part65 | |
935 | ManualWeld66.C0 = CFrame.new(0, 0, 0, 0, -1, 0, 0.956304669, 0, 0.292371869, -0.292371869, 0, 0.956304669) | |
936 | ManualWeld66.C1 = CFrame.new(0, 0.200004578, -0.100013733, 0, -1, 0, 0.956304669, 0, 0.292371869, -0.292371869, 0, 0.956304669) | |
937 | ManualWeld66.Part0 = Part65 | |
938 | ManualWeld66.Part1 = Part69 | |
939 | Part67.Parent = Model61 | |
940 | Part67.Material = Enum.Material.Sand | |
941 | Part67.BrickColor = BrickColor.new("Maroon") | |
942 | Part67.Rotation = Vector3.new(0, -17, -90) | |
943 | Part67.CanCollide = false | |
944 | Part67.Shape = Enum.PartType.Cylinder | |
945 | Part67.Size = Vector3.new(0.0500000007, 0.150000006, 0.150000006) | |
946 | Part67.CFrame = CFrame.new(-106.87825, 117.400047, -50.3852501, 0, 0.956304133, -0.29237175, -1, 0, 0, 0, 0.29237175, 0.956304133) | |
947 | Part67.BottomSurface = Enum.SurfaceType.Smooth | |
948 | Part67.TopSurface = Enum.SurfaceType.Smooth | |
949 | Part67.Color = Color3.new(0.458824, 0, 0) | |
950 | Part67.Position = Vector3.new(-106.87825, 117.400047, -50.3852501) | |
951 | Part67.Orientation = Vector3.new(0, -17, -90) | |
952 | Part67.Color = Color3.new(0.458824, 0, 0) | |
953 | ManualWeld68.Name = "Weld" | |
954 | ManualWeld68.Parent = Part67 | |
955 | ManualWeld68.C0 = CFrame.new(0, 0, 0, 0, -1, 0, 0.956304669, 0, 0.292371869, -0.292371869, 0, 0.956304669) | |
956 | ManualWeld68.C1 = CFrame.new(0, 0.0999832153, -0.299991608, 0, -1, 0, 0.956304669, 0, 0.292371869, -0.292371869, 0, 0.956304669) | |
957 | ManualWeld68.Part0 = Part67 | |
958 | ManualWeld68.Part1 = Part69 | |
959 | Part69.Parent = Model61 | |
960 | Part69.Material = Enum.Material.Sand | |
961 | Part69.BrickColor = BrickColor.new("Maroon") | |
962 | Part69.Rotation = Vector3.new(0, -17, -90) | |
963 | Part69.CanCollide = false | |
964 | Part69.Shape = Enum.PartType.Cylinder | |
965 | Part69.Size = Vector3.new(0.0500000007, 0.150000006, 0.150000006) | |
966 | Part69.CFrame = CFrame.new(-107.061577, 117.400047, -50.1275978, 0, 0.956304252, -0.29237178, -1, 0, 0, 0, 0.29237178, 0.956304252) | |
967 | Part69.BottomSurface = Enum.SurfaceType.Smooth | |
968 | Part69.TopSurface = Enum.SurfaceType.Smooth | |
969 | Part69.Color = Color3.new(0.458824, 0, 0) | |
970 | Part69.Position = Vector3.new(-107.061577, 117.400047, -50.1275978) | |
971 | Part69.Orientation = Vector3.new(0, -17, -90) | |
972 | Part69.Color = Color3.new(0.458824, 0, 0) | |
973 | Part70.Parent = Model61 | |
974 | Part70.Material = Enum.Material.Glass | |
975 | Part70.BrickColor = BrickColor.new("Really black") | |
976 | Part70.Rotation = Vector3.new(0, -17, -90) | |
977 | Part70.CanCollide = false | |
978 | Part70.Shape = Enum.PartType.Cylinder | |
979 | Part70.Size = Vector3.new(0.0500000007, 0.100000001, 0.100000001) | |
980 | Part70.CFrame = CFrame.new(-107.017754, 117.400047, -50.2710533, 0, 0.956304133, -0.29237175, -1, 0, 0, 0, 0.29237175, 0.956304133) | |
981 | Part70.BottomSurface = Enum.SurfaceType.Smooth | |
982 | Part70.TopSurface = Enum.SurfaceType.Smooth | |
983 | Part70.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
984 | Part70.Position = Vector3.new(-107.017754, 117.400047, -50.2710533) | |
985 | Part70.Orientation = Vector3.new(0, -17, -90) | |
986 | Part70.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
987 | ManualWeld71.Name = "Weld" | |
988 | ManualWeld71.Parent = Part70 | |
989 | ManualWeld71.C0 = CFrame.new(0, 0, 0, 0, -1, 0, 0.956304669, 0, 0.292371869, -0.292371869, 0, 0.956304669) | |
990 | ManualWeld71.C1 = CFrame.new(0, -3.05175781e-05, -0.149999619, 0, -1, 0, 0.956304669, 0, 0.292371869, -0.292371869, 0, 0.956304669) | |
991 | ManualWeld71.Part0 = Part70 | |
992 | ManualWeld71.Part1 = Part69 | |
993 | Part72.Parent = Model61 | |
994 | Part72.Material = Enum.Material.Glass | |
995 | Part72.BrickColor = BrickColor.new("Really black") | |
996 | Part72.Rotation = Vector3.new(0, -17, -90) | |
997 | Part72.CanCollide = false | |
998 | Part72.Shape = Enum.PartType.Cylinder | |
999 | Part72.Size = Vector3.new(0.0500000007, 0.100000001, 0.100000001) | |
1000 | Part72.CFrame = CFrame.new(-106.884956, 117.400047, -50.0212936, 0, 0.956304133, -0.29237175, -1, 0, 0, 0, 0.29237175, 0.956304133) | |
1001 | Part72.BottomSurface = Enum.SurfaceType.Smooth | |
1002 | Part72.TopSurface = Enum.SurfaceType.Smooth | |
1003 | Part72.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
1004 | Part72.Position = Vector3.new(-106.884956, 117.400047, -50.0212936) | |
1005 | Part72.Orientation = Vector3.new(0, -17, -90) | |
1006 | Part72.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
1007 | ManualWeld73.Name = "Weld" | |
1008 | ManualWeld73.Parent = Part72 | |
1009 | ManualWeld73.C0 = CFrame.new(0, 0, 0, 0, -1, 0, 0.956304669, 0, 0.292371869, -0.292371869, 0, 0.956304669) | |
1010 | ManualWeld73.C1 = CFrame.new(0, 0.199981689, 0.0500202179, 0, -1, 0, 0.956304669, 0, 0.292371869, -0.292371869, 0, 0.956304669) | |
1011 | ManualWeld73.Part0 = Part72 | |
1012 | ManualWeld73.Part1 = Part69 | |
1013 | Part74.Parent = Model61 | |
1014 | Part74.Material = Enum.Material.Glass | |
1015 | Part74.BrickColor = BrickColor.new("Really black") | |
1016 | Part74.Rotation = Vector3.new(0, -17, -90) | |
1017 | Part74.CanCollide = false | |
1018 | Part74.Shape = Enum.PartType.Cylinder | |
1019 | Part74.Size = Vector3.new(0.0500000007, 0.100000001, 0.100000001) | |
1020 | Part74.CFrame = CFrame.new(-106.834373, 117.400047, -50.5286903, 0, 0.956304133, -0.29237175, -1, 0, 0, 0, 0.29237175, 0.956304133) | |
1021 | Part74.BottomSurface = Enum.SurfaceType.Smooth | |
1022 | Part74.TopSurface = Enum.SurfaceType.Smooth | |
1023 | Part74.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
1024 | Part74.Position = Vector3.new(-106.834373, 117.400047, -50.5286903) | |
1025 | Part74.Orientation = Vector3.new(0, -17, -90) | |
1026 | Part74.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
1027 | ManualWeld75.Name = "Weld" | |
1028 | ManualWeld75.Parent = Part74 | |
1029 | ManualWeld75.C0 = CFrame.new(0, 0, 0, 0, -1, 0, 0.956304669, 0, 0.292371869, -0.292371869, 0, 0.956304669) | |
1030 | ManualWeld75.C1 = CFrame.new(0, 0.100006104, -0.449995041, 0, -1, 0, 0.956304669, 0, 0.292371869, -0.292371869, 0, 0.956304669) | |
1031 | ManualWeld75.Part0 = Part74 | |
1032 | ManualWeld75.Part1 = Part69 | |
1033 | WedgePart76.Parent = Model61 | |
1034 | WedgePart76.Material = Enum.Material.Slate | |
1035 | WedgePart76.BrickColor = BrickColor.new("Deep orange") | |
1036 | WedgePart76.Rotation = Vector3.new(0, 73, -90) | |
1037 | WedgePart76.CanCollide = false | |
1038 | WedgePart76.Size = Vector3.new(0.0999999046, 0.900000036, 0.299999982) | |
1039 | WedgePart76.CFrame = CFrame.new(-107.036301, 117.350082, -50.3812752, 0, 0.29237169, 0.956304014, -1, -0, 0, 0, -0.956304014, 0.29237169) | |
1040 | WedgePart76.BottomSurface = Enum.SurfaceType.Smooth | |
1041 | WedgePart76.Color = Color3.new(1, 0.690196, 0) | |
1042 | WedgePart76.Position = Vector3.new(-107.036301, 117.350082, -50.3812752) | |
1043 | WedgePart76.Orientation = Vector3.new(0, 73, -90) | |
1044 | WedgePart76.Color = Color3.new(1, 0.690196, 0) | |
1045 | ManualWeld77.Name = "Weld" | |
1046 | ManualWeld77.Parent = WedgePart76 | |
1047 | ManualWeld77.C0 = CFrame.new(0, 0, 0, 0, -1, 0, 0.292371869, 0, -0.956304669, 0.956304669, 0, 0.292371869) | |
1048 | ManualWeld77.C1 = CFrame.new(0.0499649048, -0.0499954224, -0.249982834, 0, -1, 0, 0.956304491, 0, 0.292371839, -0.292371839, 0, 0.956304491) | |
1049 | ManualWeld77.Part0 = WedgePart76 | |
1050 | ManualWeld77.Part1 = Part69 | |
1051 | WedgePart78.Parent = Model61 | |
1052 | WedgePart78.Material = Enum.Material.Slate | |
1053 | WedgePart78.BrickColor = BrickColor.new("Deep orange") | |
1054 | WedgePart78.Rotation = Vector3.new(-180, -73, -90) | |
1055 | WedgePart78.CanCollide = false | |
1056 | WedgePart78.Size = Vector3.new(0.0999999046, 0.900000036, 0.299999982) | |
1057 | WedgePart78.CFrame = CFrame.new(-106.749428, 117.350082, -50.2935753, 0, 0.29237169, -0.956304073, 1, -0, 0, 0, -0.956304073, -0.29237169) | |
1058 | WedgePart78.BottomSurface = Enum.SurfaceType.Smooth | |
1059 | WedgePart78.Color = Color3.new(1, 0.690196, 0) | |
1060 | WedgePart78.Position = Vector3.new(-106.749428, 117.350082, -50.2935753) | |
1061 | WedgePart78.Orientation = Vector3.new(0, -107, 90) | |
1062 | WedgePart78.Color = Color3.new(1, 0.690196, 0) | |
1063 | ManualWeld79.Name = "Weld" | |
1064 | ManualWeld79.Parent = WedgePart78 | |
1065 | ManualWeld79.C0 = CFrame.new(0, 0, 0, 0, 1, 0, 0.292371869, 0, -0.956304669, -0.956304669, 0, -0.292371869) | |
1066 | ManualWeld79.C1 = CFrame.new(0.0499649048, 0.249984741, -0.249990463, 0, -1, 0, 0.95630455, 0, 0.292371839, -0.292371839, 0, 0.95630455) | |
1067 | ManualWeld79.Part0 = WedgePart78 | |
1068 | ManualWeld79.Part1 = Part69 | |
1069 | Model80.Name = "pizza2" | |
1070 | Model80.Parent = Model0 | |
1071 | Part81.Name = "crust" | |
1072 | Part81.Parent = Model80 | |
1073 | Part81.Material = Enum.Material.Sand | |
1074 | Part81.BrickColor = BrickColor.new("Gold") | |
1075 | Part81.Rotation = Vector3.new(0, -54, 0) | |
1076 | Part81.CanCollide = false | |
1077 | Part81.Shape = Enum.PartType.Cylinder | |
1078 | Part81.Size = Vector3.new(0.599999964, 0.200000003, 0.200000003) | |
1079 | Part81.CFrame = CFrame.new(-107.531097, 117.399269, -50.201973, 0.5877859, 0, -0.809016764, 0, 1, 0, 0.809016526, 0, 0.587785482) | |
1080 | Part81.BottomSurface = Enum.SurfaceType.Smooth | |
1081 | Part81.TopSurface = Enum.SurfaceType.Smooth | |
1082 | Part81.Color = Color3.new(0.937255, 0.721569, 0.219608) | |
1083 | Part81.Position = Vector3.new(-107.531097, 117.399269, -50.201973) | |
1084 | Part81.Orientation = Vector3.new(0, -54, 0) | |
1085 | Part81.Color = Color3.new(0.937255, 0.721569, 0.219608) | |
1086 | ManualWeld82.Name = "Weld" | |
1087 | ManualWeld82.Parent = Part81 | |
1088 | ManualWeld82.C0 = CFrame.new(0, 0, 0, 0.587785721, 0, 0.809016645, 0, 1, 0, -0.809016705, 0, 0.587785661) | |
1089 | ManualWeld82.C1 = CFrame.new(0, 1.52587891e-05, 0.550006866, 0, -1, 0, 0.58778578, 0, 0.809016585, -0.809016764, 0, 0.587785602) | |
1090 | ManualWeld82.Part0 = Part81 | |
1091 | ManualWeld82.Part1 = Part86 | |
1092 | ManualWeld83.Name = "Weld" | |
1093 | ManualWeld83.Parent = Part81 | |
1094 | ManualWeld83.C0 = CFrame.new(0, 0, 0, 0.5877859, 0, 0.809016526, 0, 1, 0, -0.809016764, 0, 0.587785482) | |
1095 | ManualWeld83.C1 = CFrame.new(-0.71749115, 0.199272156, 0.558197021, 1, 0, 0, 0, 1, 0, 0, 0, 1) | |
1096 | ManualWeld83.Part0 = Part81 | |
1097 | ManualWeld83.Part1 = Part1 | |
1098 | Part84.Parent = Model80 | |
1099 | Part84.Material = Enum.Material.Sand | |
1100 | Part84.BrickColor = BrickColor.new("Maroon") | |
1101 | Part84.Rotation = Vector3.new(0, -54, -90) | |
1102 | Part84.CanCollide = false | |
1103 | Part84.Shape = Enum.PartType.Cylinder | |
1104 | Part84.Size = Vector3.new(0.0500000007, 0.150000006, 0.150000006) | |
1105 | Part84.CFrame = CFrame.new(-107.189117, 117.399269, -50.3267975, 0, 0.587786138, -0.809016943, -1, 0, 0, 0, 0.809016347, 0.587785244) | |
1106 | Part84.BottomSurface = Enum.SurfaceType.Smooth | |
1107 | Part84.TopSurface = Enum.SurfaceType.Smooth | |
1108 | Part84.Color = Color3.new(0.458824, 0, 0) | |
1109 | Part84.Position = Vector3.new(-107.189117, 117.399269, -50.3267975) | |
1110 | Part84.Orientation = Vector3.new(0, -54, -90) | |
1111 | Part84.Color = Color3.new(0.458824, 0, 0) | |
1112 | ManualWeld85.Name = "Weld" | |
1113 | ManualWeld85.Parent = Part84 | |
1114 | ManualWeld85.C0 = CFrame.new(0, 0, 0, 0, -1, 0, 0.587785721, 0, 0.809016645, -0.809016705, 0, 0.587785661) | |
1115 | ManualWeld85.C1 = CFrame.new(0, 0.10004425, 0.199966431, 0, -1, 0, 0.58778578, 0, 0.809016585, -0.809016764, 0, 0.587785602) | |
1116 | ManualWeld85.Part0 = Part84 | |
1117 | ManualWeld85.Part1 = Part86 | |
1118 | Part86.Parent = Model80 | |
1119 | Part86.Material = Enum.Material.Sand | |
1120 | Part86.BrickColor = BrickColor.new("Maroon") | |
1121 | Part86.Rotation = Vector3.new(0, -54, -90) | |
1122 | Part86.CanCollide = false | |
1123 | Part86.Shape = Enum.PartType.Cylinder | |
1124 | Part86.Size = Vector3.new(0.0500000007, 0.150000006, 0.150000006) | |
1125 | Part86.CFrame = CFrame.new(-107.086143, 117.399269, -50.5252724, 0, 0.587786019, -0.809016883, -1, 0, 0, 0, 0.809016466, 0.587785363) | |
1126 | Part86.BottomSurface = Enum.SurfaceType.Smooth | |
1127 | Part86.TopSurface = Enum.SurfaceType.Smooth | |
1128 | Part86.Color = Color3.new(0.458824, 0, 0) | |
1129 | Part86.Position = Vector3.new(-107.086143, 117.399269, -50.5252724) | |
1130 | Part86.Orientation = Vector3.new(0, -54, -90) | |
1131 | Part86.Color = Color3.new(0.458824, 0, 0) | |
1132 | Part87.Parent = Model80 | |
1133 | Part87.Material = Enum.Material.Sand | |
1134 | Part87.BrickColor = BrickColor.new("Maroon") | |
1135 | Part87.Rotation = Vector3.new(0, -54, -90) | |
1136 | Part87.CanCollide = false | |
1137 | Part87.Shape = Enum.PartType.Cylinder | |
1138 | Part87.Size = Vector3.new(0.0500000007, 0.150000006, 0.150000006) | |
1139 | Part87.CFrame = CFrame.new(-107.387604, 117.399269, -50.4298248, 0, 0.587786078, -0.809016943, -1, 0, 0, 0, 0.809016407, 0.587785304) | |
1140 | Part87.BottomSurface = Enum.SurfaceType.Smooth | |
1141 | Part87.TopSurface = Enum.SurfaceType.Smooth | |
1142 | Part87.Color = Color3.new(0.458824, 0, 0) | |
1143 | Part87.Position = Vector3.new(-107.387604, 117.399269, -50.4298248) | |
1144 | Part87.Orientation = Vector3.new(0, -54, -90) | |
1145 | Part87.Color = Color3.new(0.458824, 0, 0) | |
1146 | ManualWeld88.Name = "Weld" | |
1147 | ManualWeld88.Parent = Part87 | |
1148 | ManualWeld88.C0 = CFrame.new(0, 0, 0, 0, -1, 0, 0.587785721, 0, 0.809016645, -0.809016705, 0, 0.587785661) | |
1149 | ManualWeld88.C1 = CFrame.new(0, -0.0999755859, 0.299991608, 0, -1, 0, 0.587785721, 0, 0.809016645, -0.809016705, 0, 0.587785661) | |
1150 | ManualWeld88.Part0 = Part87 | |
1151 | ManualWeld88.Part1 = Part86 | |
1152 | Part89.Parent = Model80 | |
1153 | Part89.Material = Enum.Material.Glass | |
1154 | Part89.BrickColor = BrickColor.new("Really black") | |
1155 | Part89.Rotation = Vector3.new(0, -54, -90) | |
1156 | Part89.CanCollide = false | |
1157 | Part89.Shape = Enum.PartType.Cylinder | |
1158 | Part89.Size = Vector3.new(0.0500000007, 0.100000001, 0.100000001) | |
1159 | Part89.CFrame = CFrame.new(-107.266258, 117.399269, -50.5179863, 0, 0.587786138, -0.809016943, -1, 0, 0, 0, 0.809016347, 0.587785244) | |
1160 | Part89.BottomSurface = Enum.SurfaceType.Smooth | |
1161 | Part89.TopSurface = Enum.SurfaceType.Smooth | |
1162 | Part89.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
1163 | Part89.Position = Vector3.new(-107.266258, 117.399269, -50.5179863) | |
1164 | Part89.Orientation = Vector3.new(0, -54, -90) | |
1165 | Part89.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
1166 | ManualWeld90.Name = "Weld" | |
1167 | ManualWeld90.Parent = Part89 | |
1168 | ManualWeld90.C0 = CFrame.new(0, 0, 0, 0, -1, 0, 0.587785721, 0, 0.809016645, -0.809016705, 0, 0.587785661) | |
1169 | ManualWeld90.C1 = CFrame.new(0, -0.0999755859, 0.150001526, 0, -1, 0, 0.58778578, 0, 0.809016585, -0.809016764, 0, 0.587785602) | |
1170 | ManualWeld90.Part0 = Part89 | |
1171 | ManualWeld90.Part1 = Part86 | |
1172 | Part91.Parent = Model80 | |
1173 | Part91.Material = Enum.Material.Glass | |
1174 | Part91.BrickColor = BrickColor.new("Really black") | |
1175 | Part91.Rotation = Vector3.new(0, -54, -90) | |
1176 | Part91.CanCollide = false | |
1177 | Part91.Shape = Enum.PartType.Cylinder | |
1178 | Part91.Size = Vector3.new(0.0500000007, 0.100000001, 0.100000001) | |
1179 | Part91.CFrame = CFrame.new(-107.310539, 117.399269, -50.2386322, 0, 0.587786138, -0.809016943, -1, 0, 0, 0, 0.809016347, 0.587785244) | |
1180 | Part91.BottomSurface = Enum.SurfaceType.Smooth | |
1181 | Part91.TopSurface = Enum.SurfaceType.Smooth | |
1182 | Part91.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
1183 | Part91.Position = Vector3.new(-107.310539, 117.399269, -50.2386322) | |
1184 | Part91.Orientation = Vector3.new(0, -54, -90) | |
1185 | Part91.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
1186 | ManualWeld92.Name = "Weld" | |
1187 | ManualWeld92.Parent = Part91 | |
1188 | ManualWeld92.C0 = CFrame.new(0, 0, 0, 0, -1, 0, 0.587785721, 0, 0.809016645, -0.809016705, 0, 0.587785661) | |
1189 | ManualWeld92.C1 = CFrame.new(0, 0.0999984741, 0.350025177, 0, -1, 0, 0.58778578, 0, 0.809016585, -0.809016764, 0, 0.587785602) | |
1190 | ManualWeld92.Part0 = Part91 | |
1191 | ManualWeld92.Part1 = Part86 | |
1192 | Part93.Parent = Model80 | |
1193 | Part93.Material = Enum.Material.Glass | |
1194 | Part93.BrickColor = BrickColor.new("Really black") | |
1195 | Part93.Rotation = Vector3.new(0, -54, -90) | |
1196 | Part93.CanCollide = false | |
1197 | Part93.Shape = Enum.PartType.Cylinder | |
1198 | Part93.Size = Vector3.new(0.0500000007, 0.100000001, 0.100000001) | |
1199 | Part93.CFrame = CFrame.new(-106.96476, 117.399269, -50.6134415, 0, 0.587786138, -0.809016943, -1, 0, 0, 0, 0.809016347, 0.587785244) | |
1200 | Part93.BottomSurface = Enum.SurfaceType.Smooth | |
1201 | Part93.TopSurface = Enum.SurfaceType.Smooth | |
1202 | Part93.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
1203 | Part93.Position = Vector3.new(-106.96476, 117.399269, -50.6134415) | |
1204 | Part93.Orientation = Vector3.new(0, -54, -90) | |
1205 | Part93.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
1206 | ManualWeld94.Name = "Weld" | |
1207 | ManualWeld94.Parent = Part93 | |
1208 | ManualWeld94.C0 = CFrame.new(0, 0, 0, 0, -1, 0, 0.587785721, 0, 0.809016645, -0.809016705, 0, 0.587785661) | |
1209 | ManualWeld94.C1 = CFrame.new(0, 1.52587891e-05, -0.150024414, 0, -1, 0, 0.58778578, 0, 0.809016585, -0.809016764, 0, 0.587785602) | |
1210 | ManualWeld94.Part0 = Part93 | |
1211 | ManualWeld94.Part1 = Part86 | |
1212 | WedgePart95.Parent = Model80 | |
1213 | WedgePart95.Material = Enum.Material.Slate | |
1214 | WedgePart95.BrickColor = BrickColor.new("Deep orange") | |
1215 | WedgePart95.Rotation = Vector3.new(0, 36, -90) | |
1216 | WedgePart95.CanCollide = false | |
1217 | WedgePart95.Size = Vector3.new(0.0999999046, 0.900000036, 0.299999982) | |
1218 | WedgePart95.CFrame = CFrame.new(-107.21476, 117.349297, -50.6172104, 0, 0.809016943, 0.587786078, -1, 0, 0, 0, -0.587785304, 0.809016407) | |
1219 | WedgePart95.BottomSurface = Enum.SurfaceType.Smooth | |
1220 | WedgePart95.Color = Color3.new(1, 0.690196, 0) | |
1221 | WedgePart95.Position = Vector3.new(-107.21476, 117.349297, -50.6172104) | |
1222 | WedgePart95.Orientation = Vector3.new(0, 36, -90) | |
1223 | WedgePart95.Color = Color3.new(1, 0.690196, 0) | |
1224 | ManualWeld96.Name = "Weld" | |
1225 | ManualWeld96.Parent = WedgePart95 | |
1226 | ManualWeld96.C0 = CFrame.new(0, 0, 0, 0, -1, 0, 0.809016645, 0, -0.587785721, 0.587785661, 0, 0.809016705) | |
1227 | ManualWeld96.C1 = CFrame.new(0.0499725342, -0.149978638, 0.0500106812, 0, -1, 0, 0.58778578, 0, 0.809016645, -0.809016705, 0, 0.587785602) | |
1228 | ManualWeld96.Part0 = WedgePart95 | |
1229 | ManualWeld96.Part1 = Part86 | |
1230 | WedgePart97.Parent = Model80 | |
1231 | WedgePart97.Material = Enum.Material.Slate | |
1232 | WedgePart97.BrickColor = BrickColor.new("Deep orange") | |
1233 | WedgePart97.Rotation = Vector3.new(-180, -36, -90) | |
1234 | WedgePart97.CanCollide = false | |
1235 | WedgePart97.Size = Vector3.new(0.0999999046, 0.900000036, 0.299999982) | |
1236 | WedgePart97.CFrame = CFrame.new(-107.038414, 117.349297, -50.3745003, 0, 0.809016943, -0.587786138, 1, 0, 0, 0, -0.587785244, -0.809016407) | |
1237 | WedgePart97.BottomSurface = Enum.SurfaceType.Smooth | |
1238 | WedgePart97.Color = Color3.new(1, 0.690196, 0) | |
1239 | WedgePart97.Position = Vector3.new(-107.038414, 117.349297, -50.3745003) | |
1240 | WedgePart97.Orientation = Vector3.new(0, -144, 90) | |
1241 | WedgePart97.Color = Color3.new(1, 0.690196, 0) | |
1242 | ManualWeld98.Name = "Weld" | |
1243 | ManualWeld98.Parent = WedgePart97 | |
1244 | ManualWeld98.C0 = CFrame.new(0, 0, 0, 0, 1, 0, 0.809016645, 0, -0.587785721, -0.587785661, 0, -0.809016705) | |
1245 | ManualWeld98.C1 = CFrame.new(0.0499725342, 0.150032043, 0.0500106812, 0, -1, 0, 0.58778584, 0, 0.809016585, -0.809016824, 0, 0.587785542) | |
1246 | ManualWeld98.Part0 = WedgePart97 | |
1247 | ManualWeld98.Part1 = Part86 | |
1248 | Model99.Name = "pizza7" | |
1249 | Model99.Parent = Model0 | |
1250 | Part100.Name = "crust" | |
1251 | Part100.Parent = Model99 | |
1252 | Part100.Material = Enum.Material.Sand | |
1253 | Part100.BrickColor = BrickColor.new("Gold") | |
1254 | Part100.Rotation = Vector3.new(-180, 51, -180) | |
1255 | Part100.CanCollide = false | |
1256 | Part100.Shape = Enum.PartType.Cylinder | |
1257 | Part100.Size = Vector3.new(0.599999964, 0.200000003, 0.200000003) | |
1258 | Part100.CFrame = CFrame.new(-106.042892, 117.400009, -51.3470192, -0.629320681, 0, 0.777146697, 0, 1, 0, -0.777146697, 0, -0.629320681) | |
1259 | Part100.BottomSurface = Enum.SurfaceType.Smooth | |
1260 | Part100.TopSurface = Enum.SurfaceType.Smooth | |
1261 | Part100.Color = Color3.new(0.937255, 0.721569, 0.219608) | |
1262 | Part100.Position = Vector3.new(-106.042892, 117.400009, -51.3470192) | |
1263 | Part100.Orientation = Vector3.new(0, 129, 0) | |
1264 | Part100.Color = Color3.new(0.937255, 0.721569, 0.219608) | |
1265 | ManualWeld101.Name = "Weld" | |
1266 | ManualWeld101.Parent = Part100 | |
1267 | ManualWeld101.C0 = CFrame.new(0, 0, 0, -0.629320204, 0, -0.777146161, 0, 1, 0, 0.777146161, 0, -0.629320204) | |
1268 | ManualWeld101.C1 = CFrame.new(0, -0.100021362, 0.350009918, 0, -1, 0, -0.629320264, 0, -0.77714628, 0.77714628, 0, -0.629320264) | |
1269 | ManualWeld101.Part0 = Part100 | |
1270 | ManualWeld101.Part1 = Part103 | |
1271 | ManualWeld102.Name = "Weld" | |
1272 | ManualWeld102.Parent = Part100 | |
1273 | ManualWeld102.C0 = CFrame.new(0, 0, 0, -0.629320681, 0, -0.777146697, 0, 1, 0, 0.777146697, 0, -0.629320681) | |
1274 | ManualWeld102.C1 = CFrame.new(0.770713806, 0.200012207, -0.586849213, 1, 0, 0, 0, 1, 0, 0, 0, 1) | |
1275 | ManualWeld102.Part0 = Part100 | |
1276 | ManualWeld102.Part1 = Part1 | |
1277 | Part103.Parent = Model99 | |
1278 | Part103.Material = Enum.Material.Sand | |
1279 | Part103.BrickColor = BrickColor.new("Maroon") | |
1280 | Part103.Rotation = Vector3.new(-180, 51, 90) | |
1281 | Part103.CanCollide = false | |
1282 | Part103.Shape = Enum.PartType.Cylinder | |
1283 | Part103.Size = Vector3.new(0.0500000007, 0.150000006, 0.150000006) | |
1284 | Part103.CFrame = CFrame.new(-106.377846, 117.400009, -51.204483, 0, -0.62932086, 0.777146876, -1, 0, 0, 0, -0.777146876, -0.62932086) | |
1285 | Part103.BottomSurface = Enum.SurfaceType.Smooth | |
1286 | Part103.TopSurface = Enum.SurfaceType.Smooth | |
1287 | Part103.Color = Color3.new(0.458824, 0, 0) | |
1288 | Part103.Position = Vector3.new(-106.377846, 117.400009, -51.204483) | |
1289 | Part103.Orientation = Vector3.new(0, 129, -90) | |
1290 | Part103.Color = Color3.new(0.458824, 0, 0) | |
1291 | Part104.Parent = Model99 | |
1292 | Part104.Material = Enum.Material.Sand | |
1293 | Part104.BrickColor = BrickColor.new("Maroon") | |
1294 | Part104.Rotation = Vector3.new(-180, 51, 90) | |
1295 | Part104.CanCollide = false | |
1296 | Part104.Shape = Enum.PartType.Cylinder | |
1297 | Part104.Size = Vector3.new(0.0500000007, 0.150000006, 0.150000006) | |
1298 | Part104.CFrame = CFrame.new(-106.470306, 117.400009, -51.000885, 0, -0.629321039, 0.777147055, -1, 0, 0, 0, -0.777147055, -0.629321039) | |
1299 | Part104.BottomSurface = Enum.SurfaceType.Smooth | |
1300 | Part104.TopSurface = Enum.SurfaceType.Smooth | |
1301 | Part104.Color = Color3.new(0.458824, 0, 0) | |
1302 | Part104.Position = Vector3.new(-106.470306, 117.400009, -51.000885) | |
1303 | Part104.Orientation = Vector3.new(0, 129, -90) | |
1304 | Part104.Color = Color3.new(0.458824, 0, 0) | |
1305 | ManualWeld105.Name = "Weld" | |
1306 | ManualWeld105.Parent = Part104 | |
1307 | ManualWeld105.C0 = CFrame.new(0, 0, 0, 0, -1, 0, -0.629320204, 0, -0.777146161, 0.777146161, 0, -0.629320204) | |
1308 | ManualWeld105.C1 = CFrame.new(0, -0.100036621, -0.199985504, 0, -1, 0, -0.629320264, 0, -0.77714628, 0.77714628, 0, -0.629320264) | |
1309 | ManualWeld105.Part0 = Part104 | |
1310 | ManualWeld105.Part1 = Part103 | |
1311 | Part106.Parent = Model99 | |
1312 | Part106.Material = Enum.Material.Sand | |
1313 | Part106.BrickColor = BrickColor.new("Maroon") | |
1314 | Part106.Rotation = Vector3.new(-180, 51, 90) | |
1315 | Part106.CanCollide = false | |
1316 | Part106.Shape = Enum.PartType.Cylinder | |
1317 | Part106.Size = Vector3.new(0.0500000007, 0.150000006, 0.150000006) | |
1318 | Part106.CFrame = CFrame.new(-106.17424, 117.400009, -51.1119957, 0, -0.62932092, 0.777146995, -1, 0, 0, 0, -0.777146995, -0.62932092) | |
1319 | Part106.BottomSurface = Enum.SurfaceType.Smooth | |
1320 | Part106.TopSurface = Enum.SurfaceType.Smooth | |
1321 | Part106.Color = Color3.new(0.458824, 0, 0) | |
1322 | Part106.Position = Vector3.new(-106.17424, 117.400009, -51.1119957) | |
1323 | Part106.Orientation = Vector3.new(0, 129, -90) | |
1324 | Part106.Color = Color3.new(0.458824, 0, 0) | |
1325 | ManualWeld107.Name = "Weld" | |
1326 | ManualWeld107.Parent = Part106 | |
1327 | ManualWeld107.C0 = CFrame.new(0, 0, 0, 0, -1, 0, -0.629320204, 0, -0.777146161, 0.777146161, 0, -0.629320204) | |
1328 | ManualWeld107.C1 = CFrame.new(0, -0.200012207, 0.100028992, 0, -1, 0, -0.629320204, 0, -0.777146161, 0.777146161, 0, -0.629320204) | |
1329 | ManualWeld107.Part0 = Part106 | |
1330 | ManualWeld107.Part1 = Part103 | |
1331 | Part108.Parent = Model99 | |
1332 | Part108.Material = Enum.Material.Glass | |
1333 | Part108.BrickColor = BrickColor.new("Really black") | |
1334 | Part108.Rotation = Vector3.new(-180, 51, 90) | |
1335 | Part108.CanCollide = false | |
1336 | Part108.Shape = Enum.PartType.Cylinder | |
1337 | Part108.Size = Vector3.new(0.0500000007, 0.100000001, 0.100000001) | |
1338 | Part108.CFrame = CFrame.new(-106.290802, 117.400009, -51.0175629, 0, -0.629321039, 0.777147055, -1, 0, 0, 0, -0.777147055, -0.629321039) | |
1339 | Part108.BottomSurface = Enum.SurfaceType.Smooth | |
1340 | Part108.TopSurface = Enum.SurfaceType.Smooth | |
1341 | Part108.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
1342 | Part108.Position = Vector3.new(-106.290802, 117.400009, -51.0175629) | |
1343 | Part108.Orientation = Vector3.new(0, 129, -90) | |
1344 | Part108.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
1345 | ManualWeld109.Name = "Weld" | |
1346 | ManualWeld109.Parent = Part108 | |
1347 | ManualWeld109.C0 = CFrame.new(0, 0, 0, 0, -1, 0, -0.629320204, 0, -0.777146161, 0.777146161, 0, -0.629320204) | |
1348 | ManualWeld109.C1 = CFrame.new(0, -0.200042725, -0.049987793, 0, -1, 0, -0.629320264, 0, -0.77714628, 0.77714628, 0, -0.629320264) | |
1349 | ManualWeld109.Part0 = Part108 | |
1350 | ManualWeld109.Part1 = Part103 | |
1351 | Part110.Parent = Model99 | |
1352 | Part110.Material = Enum.Material.Glass | |
1353 | Part110.BrickColor = BrickColor.new("Really black") | |
1354 | Part110.Rotation = Vector3.new(-180, 51, 90) | |
1355 | Part110.CanCollide = false | |
1356 | Part110.Shape = Enum.PartType.Cylinder | |
1357 | Part110.Size = Vector3.new(0.0500000007, 0.100000001, 0.100000001) | |
1358 | Part110.CFrame = CFrame.new(-106.261238, 117.400009, -51.2988853, 0, -0.629321039, 0.777147055, -1, 0, 0, 0, -0.777147055, -0.629321039) | |
1359 | Part110.BottomSurface = Enum.SurfaceType.Smooth | |
1360 | Part110.TopSurface = Enum.SurfaceType.Smooth | |
1361 | Part110.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
1362 | Part110.Position = Vector3.new(-106.261238, 117.400009, -51.2988853) | |
1363 | Part110.Orientation = Vector3.new(0, 129, -90) | |
1364 | Part110.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
1365 | ManualWeld111.Name = "Weld" | |
1366 | ManualWeld111.Parent = Part110 | |
1367 | ManualWeld111.C0 = CFrame.new(0, 0, 0, 0, -1, 0, -0.629320204, 0, -0.777146161, 0.777146161, 0, -0.629320204) | |
1368 | ManualWeld111.C1 = CFrame.new(0, -2.28881836e-05, 0.150032043, 0, -1, 0, -0.629320264, 0, -0.77714628, 0.77714628, 0, -0.629320264) | |
1369 | ManualWeld111.Part0 = Part110 | |
1370 | ManualWeld111.Part1 = Part103 | |
1371 | Part112.Parent = Model99 | |
1372 | Part112.Material = Enum.Material.Glass | |
1373 | Part112.BrickColor = BrickColor.new("Really black") | |
1374 | Part112.Rotation = Vector3.new(-180, 51, 90) | |
1375 | Part112.CanCollide = false | |
1376 | Part112.Shape = Enum.PartType.Cylinder | |
1377 | Part112.Size = Vector3.new(0.0500000007, 0.100000001, 0.100000001) | |
1378 | Part112.CFrame = CFrame.new(-106.586922, 117.400009, -50.9065132, 0, -0.629321039, 0.777147055, -1, 0, 0, 0, -0.777147055, -0.629321039) | |
1379 | Part112.BottomSurface = Enum.SurfaceType.Smooth | |
1380 | Part112.TopSurface = Enum.SurfaceType.Smooth | |
1381 | Part112.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
1382 | Part112.Position = Vector3.new(-106.586922, 117.400009, -50.9065132) | |
1383 | Part112.Orientation = Vector3.new(0, 129, -90) | |
1384 | Part112.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
1385 | ManualWeld113.Name = "Weld" | |
1386 | ManualWeld113.Parent = Part112 | |
1387 | ManualWeld113.C0 = CFrame.new(0, 0, 0, 0, -1, 0, -0.629320204, 0, -0.777146161, 0.777146161, 0, -0.629320204) | |
1388 | ManualWeld113.C1 = CFrame.new(0, -0.0999908447, -0.349998474, 0, -1, 0, -0.629320264, 0, -0.77714628, 0.77714628, 0, -0.629320264) | |
1389 | ManualWeld113.Part0 = Part112 | |
1390 | ManualWeld113.Part1 = Part103 | |
1391 | WedgePart114.Parent = Model99 | |
1392 | WedgePart114.Material = Enum.Material.Slate | |
1393 | WedgePart114.BrickColor = BrickColor.new("Deep orange") | |
1394 | WedgePart114.Rotation = Vector3.new(-180, -39, 90) | |
1395 | WedgePart114.CanCollide = false | |
1396 | WedgePart114.Size = Vector3.new(0.0999999046, 0.900000036, 0.299999982) | |
1397 | WedgePart114.CFrame = CFrame.new(-106.337082, 117.350029, -50.915802, 0, -0.777147174, -0.629321098, -1, 0, 0, 0, 0.629321098, -0.777147174) | |
1398 | WedgePart114.BottomSurface = Enum.SurfaceType.Smooth | |
1399 | WedgePart114.Color = Color3.new(1, 0.690196, 0) | |
1400 | WedgePart114.Position = Vector3.new(-106.337082, 117.350029, -50.915802) | |
1401 | WedgePart114.Orientation = Vector3.new(0, -141, -90) | |
1402 | WedgePart114.Color = Color3.new(1, 0.690196, 0) | |
1403 | ManualWeld115.Name = "Weld" | |
1404 | ManualWeld115.Parent = WedgePart114 | |
1405 | ManualWeld115.C0 = CFrame.new(0, 0, 0, 0, -1, 0, -0.777146161, 0, 0.629320204, -0.629320204, 0, -0.777146161) | |
1406 | ManualWeld115.C1 = CFrame.new(0.0499801636, -0.25, -0.149993896, 0, -1, 0, -0.629320383, 0, -0.777146339, 0.777146339, 0, -0.629320383) | |
1407 | ManualWeld115.Part0 = WedgePart114 | |
1408 | ManualWeld115.Part1 = Part103 | |
1409 | WedgePart116.Parent = Model99 | |
1410 | WedgePart116.Material = Enum.Material.Slate | |
1411 | WedgePart116.BrickColor = BrickColor.new("Deep orange") | |
1412 | WedgePart116.Rotation = Vector3.new(0, 39, 90) | |
1413 | WedgePart116.CanCollide = false | |
1414 | WedgePart116.Size = Vector3.new(0.0999999046, 0.900000036, 0.299999982) | |
1415 | WedgePart116.CFrame = CFrame.new(-106.525848, 117.350029, -51.1489143, 0, -0.777147233, 0.629321158, 1, 0, 0, -0, 0.629321158, 0.777147233) | |
1416 | WedgePart116.BottomSurface = Enum.SurfaceType.Smooth | |
1417 | WedgePart116.Color = Color3.new(1, 0.690196, 0) | |
1418 | WedgePart116.Position = Vector3.new(-106.525848, 117.350029, -51.1489143) | |
1419 | WedgePart116.Orientation = Vector3.new(0, 39, 90) | |
1420 | WedgePart116.Color = Color3.new(1, 0.690196, 0) | |
1421 | ManualWeld117.Name = "Weld" | |
1422 | ManualWeld117.Parent = WedgePart116 | |
1423 | ManualWeld117.C0 = CFrame.new(0, 0, 0, 0, 1, 0, -0.777146161, 0, 0.629320204, 0.629320204, 0, 0.777146161) | |
1424 | ManualWeld117.C1 = CFrame.new(0.0499801636, 0.0499572754, -0.149990082, 0, -1, 0, -0.629320443, 0, -0.777146459, 0.777146459, 0, -0.629320443) | |
1425 | ManualWeld117.Part0 = WedgePart116 | |
1426 | ManualWeld117.Part1 = Part103 | |
1427 | Model118.Name = "pizza4" | |
1428 | Model118.Parent = Model0 | |
1429 | Part119.Name = "crust" | |
1430 | Part119.Parent = Model118 | |
1431 | Part119.Material = Enum.Material.Sand | |
1432 | Part119.BrickColor = BrickColor.new("Gold") | |
1433 | Part119.Rotation = Vector3.new(0, 19, 0) | |
1434 | Part119.CanCollide = false | |
1435 | Part119.Shape = Enum.PartType.Cylinder | |
1436 | Part119.Size = Vector3.new(0.599999964, 0.200000003, 0.200000003) | |
1437 | Part119.CFrame = CFrame.new(-106.451851, 117.399315, -49.8706093, 0.945519447, 0, 0.32556814, 0, 1, 0, -0.32556814, 0, 0.945519447) | |
1438 | Part119.BottomSurface = Enum.SurfaceType.Smooth | |
1439 | Part119.TopSurface = Enum.SurfaceType.Smooth | |
1440 | Part119.Color = Color3.new(0.937255, 0.721569, 0.219608) | |
1441 | Part119.Position = Vector3.new(-106.451851, 117.399315, -49.8706093) | |
1442 | Part119.Orientation = Vector3.new(0, 19, 0) | |
1443 | Part119.Color = Color3.new(0.937255, 0.721569, 0.219608) | |
1444 | ManualWeld120.Name = "Weld" | |
1445 | ManualWeld120.Parent = Part119 | |
1446 | ManualWeld120.C0 = CFrame.new(0, 0, 0, 0.945518732, 0, -0.325567901, 0, 1, 0, 0.325567901, 0, 0.945518732) | |
1447 | ManualWeld120.C1 = CFrame.new(0, 6.86645508e-05, 0.550018311, 0, -1, 0, 0.945518851, 0, -0.325567931, 0.325567931, 0, 0.945518851) | |
1448 | ManualWeld120.Part0 = Part119 | |
1449 | ManualWeld120.Part1 = Part124 | |
1450 | ManualWeld121.Name = "Weld" | |
1451 | ManualWeld121.Parent = Part119 | |
1452 | ManualWeld121.C0 = CFrame.new(0, 0, 0, 0.945519447, 0, -0.32556814, 0, 1, 0, 0.32556814, 0, 0.945519447) | |
1453 | ManualWeld121.C1 = CFrame.new(0.361755371, 0.199317932, 0.889560699, 1, 0, 0, 0, 1, 0, 0, 0, 1) | |
1454 | ManualWeld121.Part0 = Part119 | |
1455 | ManualWeld121.Part1 = Part1 | |
1456 | Part122.Parent = Model118 | |
1457 | Part122.Material = Enum.Material.Sand | |
1458 | Part122.BrickColor = BrickColor.new("Maroon") | |
1459 | Part122.Rotation = Vector3.new(0, 19, -90) | |
1460 | Part122.CanCollide = false | |
1461 | Part122.Shape = Enum.PartType.Cylinder | |
1462 | Part122.Size = Vector3.new(0.0500000007, 0.150000006, 0.150000006) | |
1463 | Part122.CFrame = CFrame.new(-106.471298, 117.399315, -50.2341347, 0, 0.945519924, 0.325568318, -1, 0, 0, 0, -0.325568318, 0.945519924) | |
1464 | Part122.BottomSurface = Enum.SurfaceType.Smooth | |
1465 | Part122.TopSurface = Enum.SurfaceType.Smooth | |
1466 | Part122.Color = Color3.new(0.458824, 0, 0) | |
1467 | Part122.Position = Vector3.new(-106.471298, 117.399315, -50.2341347) | |
1468 | Part122.Orientation = Vector3.new(0, 19, -90) | |
1469 | Part122.Color = Color3.new(0.458824, 0, 0) | |
1470 | ManualWeld123.Name = "Weld" | |
1471 | ManualWeld123.Parent = Part122 | |
1472 | ManualWeld123.C0 = CFrame.new(0, 0, 0, 0, -1, 0, 0.945518732, 0, -0.325567901, 0.325567901, 0, 0.945518732) | |
1473 | ManualWeld123.C1 = CFrame.new(0, 0.100028992, 0.199966431, 0, -1, 0, 0.945518851, 0, -0.325567931, 0.325567931, 0, 0.945518851) | |
1474 | ManualWeld123.Part0 = Part122 | |
1475 | ManualWeld123.Part1 = Part124 | |
1476 | Part124.Parent = Model118 | |
1477 | Part124.Material = Enum.Material.Sand | |
1478 | Part124.BrickColor = BrickColor.new("Maroon") | |
1479 | Part124.Rotation = Vector3.new(0, 19, -90) | |
1480 | Part124.CanCollide = false | |
1481 | Part124.Shape = Enum.PartType.Cylinder | |
1482 | Part124.Size = Vector3.new(0.0500000007, 0.150000006, 0.150000006) | |
1483 | Part124.CFrame = CFrame.new(-106.630981, 117.399315, -50.3906403, 0, 0.945519686, 0.325568199, -1, 0, 0, 0, -0.325568199, 0.945519686) | |
1484 | Part124.BottomSurface = Enum.SurfaceType.Smooth | |
1485 | Part124.TopSurface = Enum.SurfaceType.Smooth | |
1486 | Part124.Color = Color3.new(0.458824, 0, 0) | |
1487 | Part124.Position = Vector3.new(-106.630981, 117.399315, -50.3906403) | |
1488 | Part124.Orientation = Vector3.new(0, 19, -90) | |
1489 | Part124.Color = Color3.new(0.458824, 0, 0) | |
1490 | Part125.Parent = Model118 | |
1491 | Part125.Material = Enum.Material.Sand | |
1492 | Part125.BrickColor = BrickColor.new("Maroon") | |
1493 | Part125.Rotation = Vector3.new(0, 19, -90) | |
1494 | Part125.CanCollide = false | |
1495 | Part125.Shape = Enum.PartType.Cylinder | |
1496 | Part125.Size = Vector3.new(0.0500000007, 0.150000006, 0.150000006) | |
1497 | Part125.CFrame = CFrame.new(-106.627838, 117.399315, -50.0744171, 0, 0.945519805, 0.325568229, -1, 0, 0, 0, -0.325568229, 0.945519805) | |
1498 | Part125.BottomSurface = Enum.SurfaceType.Smooth | |
1499 | Part125.TopSurface = Enum.SurfaceType.Smooth | |
1500 | Part125.Color = Color3.new(0.458824, 0, 0) | |
1501 | Part125.Position = Vector3.new(-106.627838, 117.399315, -50.0744171) | |
1502 | Part125.Orientation = Vector3.new(0, 19, -90) | |
1503 | Part125.Color = Color3.new(0.458824, 0, 0) | |
1504 | ManualWeld126.Name = "Weld" | |
1505 | ManualWeld126.Parent = Part125 | |
1506 | ManualWeld126.C0 = CFrame.new(0, 0, 0, 0, -1, 0, 0.945518732, 0, -0.325567901, 0.325567901, 0, 0.945518732) | |
1507 | ManualWeld126.C1 = CFrame.new(0, -0.0999832153, 0.300018311, 0, -1, 0, 0.945518732, 0, -0.325567901, 0.325567901, 0, 0.945518732) | |
1508 | ManualWeld126.Part0 = Part125 | |
1509 | ManualWeld126.Part1 = Part124 | |
1510 | Part127.Parent = Model118 | |
1511 | Part127.Material = Enum.Material.Glass | |
1512 | Part127.BrickColor = BrickColor.new("Really black") | |
1513 | Part127.Rotation = Vector3.new(0, 19, -90) | |
1514 | Part127.CanCollide = false | |
1515 | Part127.Shape = Enum.PartType.Cylinder | |
1516 | Part127.Size = Vector3.new(0.0500000007, 0.100000001, 0.100000001) | |
1517 | Part127.CFrame = CFrame.new(-106.676643, 117.399315, -50.216217, 0, 0.945519924, 0.325568318, -1, 0, 0, 0, -0.325568318, 0.945519924) | |
1518 | Part127.BottomSurface = Enum.SurfaceType.Smooth | |
1519 | Part127.TopSurface = Enum.SurfaceType.Smooth | |
1520 | Part127.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
1521 | Part127.Position = Vector3.new(-106.676643, 117.399315, -50.216217) | |
1522 | Part127.Orientation = Vector3.new(0, 19, -90) | |
1523 | Part127.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
1524 | ManualWeld128.Name = "Weld" | |
1525 | ManualWeld128.Parent = Part127 | |
1526 | ManualWeld128.C0 = CFrame.new(0, 0, 0, 0, -1, 0, 0.945518732, 0, -0.325567901, 0.325567901, 0, 0.945518732) | |
1527 | ManualWeld128.C1 = CFrame.new(0, -0.0999603271, 0.150054932, 0, -1, 0, 0.945518851, 0, -0.325567931, 0.325567931, 0, 0.945518851) | |
1528 | ManualWeld128.Part0 = Part127 | |
1529 | ManualWeld128.Part1 = Part124 | |
1530 | Part129.Parent = Model118 | |
1531 | Part129.Material = Enum.Material.Glass | |
1532 | Part129.BrickColor = BrickColor.new("Really black") | |
1533 | Part129.Rotation = Vector3.new(0, 19, -90) | |
1534 | Part129.CanCollide = false | |
1535 | Part129.Shape = Enum.PartType.Cylinder | |
1536 | Part129.Size = Vector3.new(0.0500000007, 0.100000001, 0.100000001) | |
1537 | Part129.CFrame = CFrame.new(-106.42247, 117.399315, -50.0922318, 0, 0.945519924, 0.325568318, -1, 0, 0, 0, -0.325568318, 0.945519924) | |
1538 | Part129.BottomSurface = Enum.SurfaceType.Smooth | |
1539 | Part129.TopSurface = Enum.SurfaceType.Smooth | |
1540 | Part129.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
1541 | Part129.Position = Vector3.new(-106.42247, 117.399315, -50.0922318) | |
1542 | Part129.Orientation = Vector3.new(0, 19, -90) | |
1543 | Part129.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
1544 | ManualWeld130.Name = "Weld" | |
1545 | ManualWeld130.Parent = Part129 | |
1546 | ManualWeld130.C0 = CFrame.new(0, 0, 0, 0, -1, 0, 0.945518732, 0, -0.325567901, 0.325567901, 0, 0.945518732) | |
1547 | ManualWeld130.C1 = CFrame.new(0, 0.0999984741, 0.350036621, 0, -1, 0, 0.945518851, 0, -0.325567931, 0.325567931, 0, 0.945518851) | |
1548 | ManualWeld130.Part0 = Part129 | |
1549 | ManualWeld130.Part1 = Part124 | |
1550 | Part131.Parent = Model118 | |
1551 | Part131.Material = Enum.Material.Glass | |
1552 | Part131.BrickColor = BrickColor.new("Really black") | |
1553 | Part131.Rotation = Vector3.new(0, 19, -90) | |
1554 | Part131.CanCollide = false | |
1555 | Part131.Shape = Enum.PartType.Cylinder | |
1556 | Part131.Size = Vector3.new(0.0500000007, 0.100000001, 0.100000001) | |
1557 | Part131.CFrame = CFrame.new(-106.679802, 117.399315, -50.5324669, 0, 0.945519924, 0.325568318, -1, 0, 0, 0, -0.325568318, 0.945519924) | |
1558 | Part131.BottomSurface = Enum.SurfaceType.Smooth | |
1559 | Part131.TopSurface = Enum.SurfaceType.Smooth | |
1560 | Part131.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
1561 | Part131.Position = Vector3.new(-106.679802, 117.399315, -50.5324669) | |
1562 | Part131.Orientation = Vector3.new(0, 19, -90) | |
1563 | Part131.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
1564 | ManualWeld132.Name = "Weld" | |
1565 | ManualWeld132.Parent = Part131 | |
1566 | ManualWeld132.C0 = CFrame.new(0, 0, 0, 0, -1, 0, 0.945518732, 0, -0.325567901, 0.325567901, 0, 0.945518732) | |
1567 | ManualWeld132.C1 = CFrame.new(0, 1.52587891e-05, -0.149993896, 0, -1, 0, 0.945518851, 0, -0.325567931, 0.325567931, 0, 0.945518851) | |
1568 | ManualWeld132.Part0 = Part131 | |
1569 | ManualWeld132.Part1 = Part124 | |
1570 | WedgePart133.Parent = Model118 | |
1571 | WedgePart133.Material = Enum.Material.Slate | |
1572 | WedgePart133.BrickColor = BrickColor.new("Deep orange") | |
1573 | WedgePart133.Rotation = Vector3.new(-180, 71, 90) | |
1574 | WedgePart133.CanCollide = false | |
1575 | WedgePart133.Size = Vector3.new(0.0999999046, 0.900000036, 0.299999982) | |
1576 | WedgePart133.CFrame = CFrame.new(-106.756477, 117.34938, -50.294487, 0, -0.325568348, 0.945520043, -1, 0, 0, 0, -0.945520043, -0.325568348) | |
1577 | WedgePart133.BottomSurface = Enum.SurfaceType.Smooth | |
1578 | WedgePart133.Color = Color3.new(1, 0.690196, 0) | |
1579 | WedgePart133.Position = Vector3.new(-106.756477, 117.34938, -50.294487) | |
1580 | WedgePart133.Orientation = Vector3.new(0, 109, -90) | |
1581 | WedgePart133.Color = Color3.new(1, 0.690196, 0) | |
1582 | ManualWeld134.Name = "Weld" | |
1583 | ManualWeld134.Parent = WedgePart133 | |
1584 | ManualWeld134.C0 = CFrame.new(0, 0, 0, 0, -1, 0, -0.325567901, 0, -0.945518732, 0.945518732, 0, -0.325567901) | |
1585 | ManualWeld134.C1 = CFrame.new(0.0499343872, -0.149963379, 0.0500564575, 0, -1, 0, 0.94551897, 0, -0.325567961, 0.325567961, 0, 0.94551897) | |
1586 | ManualWeld134.Part0 = WedgePart133 | |
1587 | ManualWeld134.Part1 = Part124 | |
1588 | WedgePart135.Parent = Model118 | |
1589 | WedgePart135.Material = Enum.Material.Slate | |
1590 | WedgePart135.BrickColor = BrickColor.new("Deep orange") | |
1591 | WedgePart135.Rotation = Vector3.new(0, -71, 90) | |
1592 | WedgePart135.CanCollide = false | |
1593 | WedgePart135.Size = Vector3.new(0.0999999046, 0.900000036, 0.299999982) | |
1594 | WedgePart135.CFrame = CFrame.new(-106.472771, 117.34938, -50.3921661, 0, -0.325568378, -0.945520163, 1, 0, 0, 0, -0.945520163, 0.325568378) | |
1595 | WedgePart135.BottomSurface = Enum.SurfaceType.Smooth | |
1596 | WedgePart135.Color = Color3.new(1, 0.690196, 0) | |
1597 | WedgePart135.Position = Vector3.new(-106.472771, 117.34938, -50.3921661) | |
1598 | WedgePart135.Orientation = Vector3.new(0, -71, 90) | |
1599 | WedgePart135.Color = Color3.new(1, 0.690196, 0) | |
1600 | ManualWeld136.Name = "Weld" | |
1601 | ManualWeld136.Parent = WedgePart135 | |
1602 | ManualWeld136.C0 = CFrame.new(0, 0, 0, 0, 1, 0, -0.325567901, 0, -0.945518732, -0.945518732, 0, 0.325567901) | |
1603 | ManualWeld136.C1 = CFrame.new(0.0499343872, 0.150085449, 0.0500640869, 0, -1, 0, 0.94551909, 0, -0.325567991, 0.325567991, 0, 0.94551909) | |
1604 | ManualWeld136.Part0 = WedgePart135 | |
1605 | ManualWeld136.Part1 = Part124 | |
1606 | Model137.Name = "pizza9" | |
1607 | Model137.Parent = Model0 | |
1608 | Part138.Name = "crust" | |
1609 | Part138.Parent = Model137 | |
1610 | Part138.Material = Enum.Material.Sand | |
1611 | Part138.BrickColor = BrickColor.new("Gold") | |
1612 | Part138.Rotation = Vector3.new(-180, -19, -180) | |
1613 | Part138.CanCollide = false | |
1614 | Part138.Shape = Enum.PartType.Cylinder | |
1615 | Part138.Size = Vector3.new(0.599999964, 0.200000003, 0.200000003) | |
1616 | Part138.CFrame = CFrame.new(-107.088394, 117.400063, -51.6453171, -0.94551897, 0, -0.325567007, 0, 1, 0, 0.325567007, 0, -0.94551897) | |
1617 | Part138.BottomSurface = Enum.SurfaceType.Smooth | |
1618 | Part138.TopSurface = Enum.SurfaceType.Smooth | |
1619 | Part138.Color = Color3.new(0.937255, 0.721569, 0.219608) | |
1620 | Part138.Position = Vector3.new(-107.088394, 117.400063, -51.6453171) | |
1621 | Part138.Orientation = Vector3.new(0, -161, 0) | |
1622 | Part138.Color = Color3.new(0.937255, 0.721569, 0.219608) | |
1623 | ManualWeld139.Name = "Weld" | |
1624 | ManualWeld139.Parent = Part138 | |
1625 | ManualWeld139.C0 = CFrame.new(0, 0, 0, -0.94551897, 0, 0.325567007, 0, 1, 0, -0.325567007, 0, -0.94551897) | |
1626 | ManualWeld139.C1 = CFrame.new(0, -0.0999221802, 0.199890137, 0, -1, 0, -0.94551897, 0, 0.325567007, -0.325567007, 0, -0.94551897) | |
1627 | ManualWeld139.Part0 = Part138 | |
1628 | ManualWeld139.Part1 = Part149 | |
1629 | ManualWeld140.Name = "NOUNOOB" | |
1630 | ManualWeld140.Parent = Part138 | |
1631 | ManualWeld140.C0 = CFrame.new(0, 0, 0, -0.94551897, 0, 0.325567007, 0, 1, 0, -0.325567007, 0, -0.94551897) | |
1632 | ManualWeld140.C1 = CFrame.new(-0.274787903, 0.200065613, -0.885147095, 1, 0, 0, 0, 1, 0, 0, 0, 1) | |
1633 | ManualWeld140.Part0 = Part138 | |
1634 | ManualWeld140.Part1 = Part1 | |
1635 | Part141.Parent = Model137 | |
1636 | Part141.Material = Enum.Material.Sand | |
1637 | Part141.BrickColor = BrickColor.new("Maroon") | |
1638 | Part141.Rotation = Vector3.new(-180, -19, 90) | |
1639 | Part141.CanCollide = false | |
1640 | Part141.Shape = Enum.PartType.Cylinder | |
1641 | Part141.Size = Vector3.new(0.0500000007, 0.150000006, 0.150000006) | |
1642 | Part141.CFrame = CFrame.new(-107.069008, 117.400063, -51.2818527, 0, -0.94551897, -0.325567007, -1, 0, 0, 0, 0.325567007, -0.94551897) | |
1643 | Part141.BottomSurface = Enum.SurfaceType.Smooth | |
1644 | Part141.TopSurface = Enum.SurfaceType.Smooth | |
1645 | Part141.Color = Color3.new(0.458824, 0, 0) | |
1646 | Part141.Position = Vector3.new(-107.069008, 117.400063, -51.2818527) | |
1647 | Part141.Orientation = Vector3.new(0, -161, -90) | |
1648 | Part141.Color = Color3.new(0.458824, 0, 0) | |
1649 | ManualWeld142.Name = "Weld" | |
1650 | ManualWeld142.Parent = Part141 | |
1651 | ManualWeld142.C0 = CFrame.new(0, 0, 0, 0, -1, 0, -0.94551897, 0, 0.325567007, -0.325567007, 0, -0.94551897) | |
1652 | ManualWeld142.C1 = CFrame.new(0, 7.62939453e-05, -0.150085449, 0, -1, 0, -0.94551897, 0, 0.325567007, -0.325567007, 0, -0.94551897) | |
1653 | ManualWeld142.Part0 = Part141 | |
1654 | ManualWeld142.Part1 = Part149 | |
1655 | Part143.Parent = Model137 | |
1656 | Part143.Material = Enum.Material.Sand | |
1657 | Part143.BrickColor = BrickColor.new("Maroon") | |
1658 | Part143.Rotation = Vector3.new(-180, -19, 90) | |
1659 | Part143.CanCollide = false | |
1660 | Part143.Shape = Enum.PartType.Cylinder | |
1661 | Part143.Size = Vector3.new(0.0500000007, 0.150000006, 0.150000006) | |
1662 | Part143.CFrame = CFrame.new(-106.909256, 117.400063, -51.1252899, 0, -0.94551897, -0.325567007, -1, 0, 0, 0, 0.325567007, -0.94551897) | |
1663 | Part143.BottomSurface = Enum.SurfaceType.Smooth | |
1664 | Part143.TopSurface = Enum.SurfaceType.Smooth | |
1665 | Part143.Color = Color3.new(0.458824, 0, 0) | |
1666 | Part143.Position = Vector3.new(-106.909256, 117.400063, -51.1252899) | |
1667 | Part143.Orientation = Vector3.new(0, -161, -90) | |
1668 | Part143.Color = Color3.new(0.458824, 0, 0) | |
1669 | ManualWeld144.Name = "Weld" | |
1670 | ManualWeld144.Parent = Part143 | |
1671 | ManualWeld144.C0 = CFrame.new(0, 0, 0, 0, -1, 0, -0.94551897, 0, 0.325567007, -0.325567007, 0, -0.94551897) | |
1672 | ManualWeld144.C1 = CFrame.new(0, -0.0999984741, -0.350128174, 0, -1, 0, -0.94551897, 0, 0.325567007, -0.325567007, 0, -0.94551897) | |
1673 | ManualWeld144.Part0 = Part143 | |
1674 | ManualWeld144.Part1 = Part149 | |
1675 | Part145.Parent = Model137 | |
1676 | Part145.Material = Enum.Material.Sand | |
1677 | Part145.BrickColor = BrickColor.new("Maroon") | |
1678 | Part145.Rotation = Vector3.new(-180, -19, 90) | |
1679 | Part145.CanCollide = false | |
1680 | Part145.Shape = Enum.PartType.Cylinder | |
1681 | Part145.Size = Vector3.new(0.0500000007, 0.150000006, 0.150000006) | |
1682 | Part145.CFrame = CFrame.new(-106.912437, 117.400063, -51.4414902, 0, -0.94551897, -0.325567007, -1, 0, 0, 0, 0.325567007, -0.94551897) | |
1683 | Part145.BottomSurface = Enum.SurfaceType.Smooth | |
1684 | Part145.TopSurface = Enum.SurfaceType.Smooth | |
1685 | Part145.Color = Color3.new(0.458824, 0, 0) | |
1686 | Part145.Position = Vector3.new(-106.912437, 117.400063, -51.4414902) | |
1687 | Part145.Orientation = Vector3.new(0, -161, -90) | |
1688 | Part145.Color = Color3.new(0.458824, 0, 0) | |
1689 | ManualWeld146.Name = "Weld" | |
1690 | ManualWeld146.Parent = Part145 | |
1691 | ManualWeld146.C0 = CFrame.new(0, 0, 0, 0, -1, 0, -0.94551897, 0, 0.325567007, -0.325567007, 0, -0.94551897) | |
1692 | ManualWeld146.C1 = CFrame.new(0, -0.199935913, -0.0501174927, 0, -1, 0, -0.94551897, 0, 0.325567007, -0.325567007, 0, -0.94551897) | |
1693 | ManualWeld146.Part0 = Part145 | |
1694 | ManualWeld146.Part1 = Part149 | |
1695 | Part147.Parent = Model137 | |
1696 | Part147.Material = Enum.Material.Glass | |
1697 | Part147.BrickColor = BrickColor.new("Really black") | |
1698 | Part147.Rotation = Vector3.new(-180, -19, 90) | |
1699 | Part147.CanCollide = false | |
1700 | Part147.Shape = Enum.PartType.Cylinder | |
1701 | Part147.Size = Vector3.new(0.0500000007, 0.100000001, 0.100000001) | |
1702 | Part147.CFrame = CFrame.new(-106.863625, 117.400063, -51.2997284, 0, -0.94551897, -0.325567007, -1, 0, 0, 0, 0.325567007, -0.94551897) | |
1703 | Part147.BottomSurface = Enum.SurfaceType.Smooth | |
1704 | Part147.TopSurface = Enum.SurfaceType.Smooth | |
1705 | Part147.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
1706 | Part147.Position = Vector3.new(-106.863625, 117.400063, -51.2997284) | |
1707 | Part147.Orientation = Vector3.new(0, -161, -90) | |
1708 | Part147.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
1709 | ManualWeld148.Name = "Weld" | |
1710 | ManualWeld148.Parent = Part147 | |
1711 | ManualWeld148.C0 = CFrame.new(0, 0, 0, 0, -1, 0, -0.94551897, 0, 0.325567007, -0.325567007, 0, -0.94551897) | |
1712 | ManualWeld148.C1 = CFrame.new(0, -0.199935913, -0.200050354, 0, -1, 0, -0.94551897, 0, 0.325567007, -0.325567007, 0, -0.94551897) | |
1713 | ManualWeld148.Part0 = Part147 | |
1714 | ManualWeld148.Part1 = Part149 | |
1715 | Part149.Parent = Model137 | |
1716 | Part149.Material = Enum.Material.Glass | |
1717 | Part149.BrickColor = BrickColor.new("Really black") | |
1718 | Part149.Rotation = Vector3.new(-180, -19, 90) | |
1719 | Part149.CanCollide = false | |
1720 | Part149.Shape = Enum.PartType.Cylinder | |
1721 | Part149.Size = Vector3.new(0.0500000007, 0.100000001, 0.100000001) | |
1722 | Part149.CFrame = CFrame.new(-107.117798, 117.400063, -51.4237862, 0, -0.94551897, -0.325567007, -1, 0, 0, 0, 0.325567007, -0.94551897) | |
1723 | Part149.BottomSurface = Enum.SurfaceType.Smooth | |
1724 | Part149.TopSurface = Enum.SurfaceType.Smooth | |
1725 | Part149.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
1726 | Part149.Position = Vector3.new(-107.117798, 117.400063, -51.4237862) | |
1727 | Part149.Orientation = Vector3.new(0, -161, -90) | |
1728 | Part149.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
1729 | Part150.Parent = Model137 | |
1730 | Part150.Material = Enum.Material.Glass | |
1731 | Part150.BrickColor = BrickColor.new("Really black") | |
1732 | Part150.Rotation = Vector3.new(-180, -19, 90) | |
1733 | Part150.CanCollide = false | |
1734 | Part150.Shape = Enum.PartType.Cylinder | |
1735 | Part150.Size = Vector3.new(0.0500000007, 0.100000001, 0.100000001) | |
1736 | Part150.CFrame = CFrame.new(-106.860435, 117.400063, -50.9835129, 0, -0.94551897, -0.325567007, -1, 0, 0, 0, 0.325567007, -0.94551897) | |
1737 | Part150.BottomSurface = Enum.SurfaceType.Smooth | |
1738 | Part150.TopSurface = Enum.SurfaceType.Smooth | |
1739 | Part150.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
1740 | Part150.Position = Vector3.new(-106.860435, 117.400063, -50.9835129) | |
1741 | Part150.Orientation = Vector3.new(0, -161, -90) | |
1742 | Part150.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
1743 | ManualWeld151.Name = "Weld" | |
1744 | ManualWeld151.Parent = Part150 | |
1745 | ManualWeld151.C0 = CFrame.new(0, 0, 0, 0, -1, 0, -0.94551897, 0, 0.325567007, -0.325567007, 0, -0.94551897) | |
1746 | ManualWeld151.C1 = CFrame.new(0, -0.100006104, -0.500076294, 0, -1, 0, -0.94551897, 0, 0.325567007, -0.325567007, 0, -0.94551897) | |
1747 | ManualWeld151.Part0 = Part150 | |
1748 | ManualWeld151.Part1 = Part149 | |
1749 | WedgePart152.Parent = Model137 | |
1750 | WedgePart152.Material = Enum.Material.Slate | |
1751 | WedgePart152.Name = "SlicePart" | |
1752 | WedgePart152.BrickColor = BrickColor.new("Deep orange") | |
1753 | WedgePart152.Rotation = Vector3.new(0, -71, -90) | |
1754 | WedgePart152.CanCollide = false | |
1755 | WedgePart152.Size = Vector3.new(0.0999999046, 0.900000036, 0.299999982) | |
1756 | WedgePart152.CFrame = CFrame.new(-106.783669, 117.35006, -51.2214813, 0, 0.325567007, -0.94551897, -1, 0, 0, 0, 0.94551897, 0.325567007) | |
1757 | WedgePart152.BottomSurface = Enum.SurfaceType.Smooth | |
1758 | WedgePart152.Color = Color3.new(1, 0.690196, 0) | |
1759 | WedgePart152.Position = Vector3.new(-106.783669, 117.35006, -51.2214813) | |
1760 | WedgePart152.Orientation = Vector3.new(0, -71, -90) | |
1761 | WedgePart152.Color = Color3.new(1, 0.690196, 0) | |
1762 | ManualWeld153.Name = "Weld" | |
1763 | ManualWeld153.Parent = WedgePart152 | |
1764 | ManualWeld153.C0 = CFrame.new(0, 0, 0, 0, -1, 0, 0.325567007, 0, 0.94551897, -0.94551897, 0, 0.325567007) | |
1765 | ManualWeld153.C1 = CFrame.new(0.0500030518, -0.250061035, -0.300064087, 0, -1, 0, -0.94551897, 0, 0.325567007, -0.325567007, 0, -0.94551897) | |
1766 | ManualWeld153.Part0 = WedgePart152 | |
1767 | ManualWeld153.Part1 = Part149 | |
1768 | WedgePart154.Parent = Model137 | |
1769 | WedgePart154.Material = Enum.Material.Slate | |
1770 | WedgePart154.BrickColor = BrickColor.new("Deep orange") | |
1771 | WedgePart154.Rotation = Vector3.new(-180, 71, -90) | |
1772 | WedgePart154.CanCollide = false | |
1773 | WedgePart154.Size = Vector3.new(0.0999999046, 0.900000036, 0.299999982) | |
1774 | WedgePart154.CFrame = CFrame.new(-107.067345, 117.35006, -51.1237335, -0, 0.325567007, 0.94551897, 1, 0, 0, 0, 0.94551897, -0.325567007) | |
1775 | WedgePart154.BottomSurface = Enum.SurfaceType.Smooth | |
1776 | WedgePart154.Color = Color3.new(1, 0.690196, 0) | |
1777 | WedgePart154.Position = Vector3.new(-107.067345, 117.35006, -51.1237335) | |
1778 | WedgePart154.Orientation = Vector3.new(0, 109, 90) | |
1779 | WedgePart154.Color = Color3.new(1, 0.690196, 0) | |
1780 | ManualWeld155.Name = "Weld" | |
1781 | ManualWeld155.Parent = WedgePart154 | |
1782 | ManualWeld155.C0 = CFrame.new(0, 0, 0, 0, 1, 0, 0.325567007, 0, 0.94551897, 0.94551897, 0, -0.325567007) | |
1783 | ManualWeld155.C1 = CFrame.new(0.0500030518, 0.0499801636, -0.300132751, 0, -1, 0, -0.94551897, 0, 0.325567007, -0.325567007, 0, -0.94551897) | |
1784 | ManualWeld155.Part0 = WedgePart154 | |
1785 | ManualWeld155.Part1 = Part149 | |
1786 | Model156.Name = "pizza8" | |
1787 | Model156.Parent = Model0 | |
1788 | Part157.Name = "crust" | |
1789 | Part157.Parent = Model156 | |
1790 | Part157.Material = Enum.Material.Sand | |
1791 | Part157.BrickColor = BrickColor.new("Gold") | |
1792 | Part157.Rotation = Vector3.new(-180, 15, -180) | |
1793 | Part157.CanCollide = false | |
1794 | Part157.Shape = Enum.PartType.Cylinder | |
1795 | Part157.Size = Vector3.new(0.599999964, 0.200000003, 0.200000003) | |
1796 | Part157.CFrame = CFrame.new(-106.536034, 117.399269, -51.6659584, -0.965925634, 0, 0.258819908, 0, 1, 0, -0.258819908, 0, -0.965925634) | |
1797 | Part157.BottomSurface = Enum.SurfaceType.Smooth | |
1798 | Part157.TopSurface = Enum.SurfaceType.Smooth | |
1799 | Part157.Color = Color3.new(0.937255, 0.721569, 0.219608) | |
1800 | Part157.Position = Vector3.new(-106.536034, 117.399269, -51.6659584) | |
1801 | Part157.Orientation = Vector3.new(0, 165, 0) | |
1802 | Part157.Color = Color3.new(0.937255, 0.721569, 0.219608) | |
1803 | ManualWeld158.Name = "Weld" | |
1804 | ManualWeld158.Parent = Part157 | |
1805 | ManualWeld158.C0 = CFrame.new(0, 0, 0, -0.965925634, 0, -0.258819908, 0, 1, 0, 0.258819908, 0, -0.965925634) | |
1806 | ManualWeld158.C1 = CFrame.new(0, -0.100006104, 0.35005188, 0, -1, 0, -0.965925634, 0, -0.258819908, 0.258819908, 0, -0.965925634) | |
1807 | ManualWeld158.Part0 = Part157 | |
1808 | ManualWeld158.Part1 = Part160 | |
1809 | ManualWeld159.Name = "Weld" | |
1810 | ManualWeld159.Parent = Part157 | |
1811 | ManualWeld159.C0 = CFrame.new(0, 0, 0, -0.965925634, 0, -0.258819908, 0, 1, 0, 0.258819908, 0, -0.965925634) | |
1812 | ManualWeld159.C1 = CFrame.new(0.277572632, 0.199272156, -0.905788422, 1, 0, 0, 0, 1, 0, 0, 0, 1) | |
1813 | ManualWeld159.Part0 = Part157 | |
1814 | ManualWeld159.Part1 = Part1 | |
1815 | Part160.Parent = Model156 | |
1816 | Part160.Material = Enum.Material.Sand | |
1817 | Part160.BrickColor = BrickColor.new("Maroon") | |
1818 | Part160.Rotation = Vector3.new(-180, 15, 90) | |
1819 | Part160.CanCollide = false | |
1820 | Part160.Shape = Enum.PartType.Cylinder | |
1821 | Part160.Size = Vector3.new(0.0500000007, 0.150000006, 0.150000006) | |
1822 | Part160.CFrame = CFrame.new(-106.723236, 117.399269, -51.3537178, 0, -0.965925634, 0.258819908, -1, 0, 0, 0, -0.258819908, -0.965925634) | |
1823 | Part160.BottomSurface = Enum.SurfaceType.Smooth | |
1824 | Part160.TopSurface = Enum.SurfaceType.Smooth | |
1825 | Part160.Color = Color3.new(0.458824, 0, 0) | |
1826 | Part160.Position = Vector3.new(-106.723236, 117.399269, -51.3537178) | |
1827 | Part160.Orientation = Vector3.new(0, 165, -90) | |
1828 | Part160.Color = Color3.new(0.458824, 0, 0) | |
1829 | Part161.Parent = Model156 | |
1830 | Part161.Material = Enum.Material.Sand | |
1831 | Part161.BrickColor = BrickColor.new("Maroon") | |
1832 | Part161.Rotation = Vector3.new(-180, 15, 90) | |
1833 | Part161.CanCollide = false | |
1834 | Part161.Shape = Enum.PartType.Cylinder | |
1835 | Part161.Size = Vector3.new(0.0500000007, 0.150000006, 0.150000006) | |
1836 | Part161.CFrame = CFrame.new(-106.678337, 117.399269, -51.1346588, 0, -0.965925634, 0.258819908, -1, 0, 0, 0, -0.258819908, -0.965925634) | |
1837 | Part161.BottomSurface = Enum.SurfaceType.Smooth | |
1838 | Part161.TopSurface = Enum.SurfaceType.Smooth | |
1839 | Part161.Color = Color3.new(0.458824, 0, 0) | |
1840 | Part161.Position = Vector3.new(-106.678337, 117.399269, -51.1346588) | |
1841 | Part161.Orientation = Vector3.new(0, 165, -90) | |
1842 | Part161.Color = Color3.new(0.458824, 0, 0) | |
1843 | ManualWeld162.Name = "Weld" | |
1844 | ManualWeld162.Parent = Part161 | |
1845 | ManualWeld162.C0 = CFrame.new(0, 0, 0, 0, -1, 0, -0.965925634, 0, -0.258819908, 0.258819908, 0, -0.965925634) | |
1846 | ManualWeld162.C1 = CFrame.new(0, -0.100067139, -0.199972153, 0, -1, 0, -0.965925634, 0, -0.258819908, 0.258819908, 0, -0.965925634) | |
1847 | ManualWeld162.Part0 = Part161 | |
1848 | ManualWeld162.Part1 = Part160 | |
1849 | Part163.Parent = Model156 | |
1850 | Part163.Material = Enum.Material.Sand | |
1851 | Part163.BrickColor = BrickColor.new("Maroon") | |
1852 | Part163.Rotation = Vector3.new(-180, 15, 90) | |
1853 | Part163.CanCollide = false | |
1854 | Part163.Shape = Enum.PartType.Cylinder | |
1855 | Part163.Size = Vector3.new(0.0500000007, 0.150000006, 0.150000006) | |
1856 | Part163.CFrame = CFrame.new(-106.504143, 117.399269, -51.3985863, 0, -0.965925634, 0.258819908, -1, 0, 0, 0, -0.258819908, -0.965925634) | |
1857 | Part163.BottomSurface = Enum.SurfaceType.Smooth | |
1858 | Part163.TopSurface = Enum.SurfaceType.Smooth | |
1859 | Part163.Color = Color3.new(0.458824, 0, 0) | |
1860 | Part163.Position = Vector3.new(-106.504143, 117.399269, -51.3985863) | |
1861 | Part163.Orientation = Vector3.new(0, 165, -90) | |
1862 | Part163.Color = Color3.new(0.458824, 0, 0) | |
1863 | ManualWeld164.Name = "Weld" | |
1864 | ManualWeld164.Parent = Part163 | |
1865 | ManualWeld164.C0 = CFrame.new(0, 0, 0, 0, -1, 0, -0.965925634, 0, -0.258819908, 0.258819908, 0, -0.965925634) | |
1866 | ManualWeld164.C1 = CFrame.new(0, -0.200012207, 0.100046158, 0, -1, 0, -0.965925634, 0, -0.258819908, 0.258819908, 0, -0.965925634) | |
1867 | ManualWeld164.Part0 = Part163 | |
1868 | ManualWeld164.Part1 = Part160 | |
1869 | Part165.Parent = Model156 | |
1870 | Part165.Material = Enum.Material.Glass | |
1871 | Part165.BrickColor = BrickColor.new("Really black") | |
1872 | Part165.Rotation = Vector3.new(-180, 15, 90) | |
1873 | Part165.CanCollide = false | |
1874 | Part165.Shape = Enum.PartType.Cylinder | |
1875 | Part165.Size = Vector3.new(0.0500000007, 0.100000001, 0.100000001) | |
1876 | Part165.CFrame = CFrame.new(-106.542931, 117.399269, -51.2537346, 0, -0.965925634, 0.258819908, -1, 0, 0, 0, -0.258819908, -0.965925634) | |
1877 | Part165.BottomSurface = Enum.SurfaceType.Smooth | |
1878 | Part165.TopSurface = Enum.SurfaceType.Smooth | |
1879 | Part165.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
1880 | Part165.Position = Vector3.new(-106.542931, 117.399269, -51.2537346) | |
1881 | Part165.Orientation = Vector3.new(0, 165, -90) | |
1882 | Part165.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
1883 | ManualWeld166.Name = "Weld" | |
1884 | ManualWeld166.Parent = Part165 | |
1885 | ManualWeld166.C0 = CFrame.new(0, 0, 0, 0, -1, 0, -0.965925634, 0, -0.258819908, 0.258819908, 0, -0.965925634) | |
1886 | ManualWeld166.C1 = CFrame.new(0, -0.200042725, -0.0499095917, 0, -1, 0, -0.965925634, 0, -0.258819908, 0.258819908, 0, -0.965925634) | |
1887 | ManualWeld166.Part0 = Part165 | |
1888 | ManualWeld166.Part1 = Part160 | |
1889 | Part167.Parent = Model156 | |
1890 | Part167.Material = Enum.Material.Glass | |
1891 | Part167.BrickColor = BrickColor.new("Really black") | |
1892 | Part167.Rotation = Vector3.new(-180, 15, 90) | |
1893 | Part167.CanCollide = false | |
1894 | Part167.Shape = Enum.PartType.Cylinder | |
1895 | Part167.Size = Vector3.new(0.0500000007, 0.100000001, 0.100000001) | |
1896 | Part167.CFrame = CFrame.new(-106.684288, 117.399269, -51.498661, 0, -0.965925634, 0.258819908, -1, 0, 0, 0, -0.258819908, -0.965925634) | |
1897 | Part167.BottomSurface = Enum.SurfaceType.Smooth | |
1898 | Part167.TopSurface = Enum.SurfaceType.Smooth | |
1899 | Part167.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
1900 | Part167.Position = Vector3.new(-106.684288, 117.399269, -51.498661) | |
1901 | Part167.Orientation = Vector3.new(0, 165, -90) | |
1902 | Part167.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
1903 | ManualWeld168.Name = "Weld" | |
1904 | ManualWeld168.Parent = Part167 | |
1905 | ManualWeld168.C0 = CFrame.new(0, 0, 0, 0, -1, 0, -0.965925634, 0, -0.258819908, 0.258819908, 0, -0.965925634) | |
1906 | ManualWeld168.C1 = CFrame.new(0, -0.000106811523, 0.150085449, 0, -1, 0, -0.965925634, 0, -0.258819908, 0.258819908, 0, -0.965925634) | |
1907 | ManualWeld168.Part0 = Part167 | |
1908 | ManualWeld168.Part1 = Part160 | |
1909 | Part169.Parent = Model156 | |
1910 | Part169.Material = Enum.Material.Glass | |
1911 | Part169.BrickColor = BrickColor.new("Really black") | |
1912 | Part169.Rotation = Vector3.new(-180, 15, 90) | |
1913 | Part169.CanCollide = false | |
1914 | Part169.Shape = Enum.PartType.Cylinder | |
1915 | Part169.Size = Vector3.new(0.0500000007, 0.100000001, 0.100000001) | |
1916 | Part169.CFrame = CFrame.new(-106.717194, 117.399269, -50.9897957, 0, -0.965925634, 0.258819908, -1, 0, 0, 0, -0.258819908, -0.965925634) | |
1917 | Part169.BottomSurface = Enum.SurfaceType.Smooth | |
1918 | Part169.TopSurface = Enum.SurfaceType.Smooth | |
1919 | Part169.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
1920 | Part169.Position = Vector3.new(-106.717194, 117.399269, -50.9897957) | |
1921 | Part169.Orientation = Vector3.new(0, 165, -90) | |
1922 | Part169.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
1923 | ManualWeld170.Name = "Weld" | |
1924 | ManualWeld170.Parent = Part169 | |
1925 | ManualWeld170.C0 = CFrame.new(0, 0, 0, 0, -1, 0, -0.965925634, 0, -0.258819908, 0.258819908, 0, -0.965925634) | |
1926 | ManualWeld170.C1 = CFrame.new(0, -0.100028992, -0.349956512, 0, -1, 0, -0.965925634, 0, -0.258819908, 0.258819908, 0, -0.965925634) | |
1927 | ManualWeld170.Part0 = Part169 | |
1928 | ManualWeld170.Part1 = Part160 | |
1929 | WedgePart171.Parent = Model156 | |
1930 | WedgePart171.Material = Enum.Material.Slate | |
1931 | WedgePart171.BrickColor = BrickColor.new("Deep orange") | |
1932 | WedgePart171.Rotation = Vector3.new(-180, -75, 90) | |
1933 | WedgePart171.CanCollide = false | |
1934 | WedgePart171.Size = Vector3.new(0.0999999046, 0.900000036, 0.299999982) | |
1935 | WedgePart171.CFrame = CFrame.new(-106.520523, 117.349358, -51.1442108, 0, -0.258819908, -0.965925634, -1, 0, 0, 0, 0.965925634, -0.258819908) | |
1936 | WedgePart171.BottomSurface = Enum.SurfaceType.Smooth | |
1937 | WedgePart171.Color = Color3.new(1, 0.690196, 0) | |
1938 | WedgePart171.Position = Vector3.new(-106.520523, 117.349358, -51.1442108) | |
1939 | WedgePart171.Orientation = Vector3.new(0, -105, -90) | |
1940 | WedgePart171.Color = Color3.new(1, 0.690196, 0) | |
1941 | ManualWeld172.Name = "Weld" | |
1942 | ManualWeld172.Parent = WedgePart171 | |
1943 | ManualWeld172.C0 = CFrame.new(0, 0, 0, 0, -1, 0, -0.258819908, 0, 0.965925634, -0.965925634, 0, -0.258819908) | |
1944 | ManualWeld172.C1 = CFrame.new(0.049911499, -0.250030518, -0.149902344, 0, -1, 0, -0.965925634, 0, -0.258819908, 0.258819908, 0, -0.965925634) | |
1945 | ManualWeld172.Part0 = WedgePart171 | |
1946 | ManualWeld172.Part1 = Part160 | |
1947 | WedgePart173.Parent = Model156 | |
1948 | WedgePart173.Material = Enum.Material.Slate | |
1949 | WedgePart173.BrickColor = BrickColor.new("Deep orange") | |
1950 | WedgePart173.Rotation = Vector3.new(0, 75, 90) | |
1951 | WedgePart173.CanCollide = false | |
1952 | WedgePart173.Size = Vector3.new(0.0999999046, 0.900000036, 0.299999982) | |
1953 | WedgePart173.CFrame = CFrame.new(-106.810349, 117.349358, -51.2218857, 0, -0.258819908, 0.965925634, 1, 0, 0, -0, 0.965925634, 0.258819908) | |
1954 | WedgePart173.BottomSurface = Enum.SurfaceType.Smooth | |
1955 | WedgePart173.Color = Color3.new(1, 0.690196, 0) | |
1956 | WedgePart173.Position = Vector3.new(-106.810349, 117.349358, -51.2218857) | |
1957 | WedgePart173.Orientation = Vector3.new(0, 75, 90) | |
1958 | WedgePart173.Color = Color3.new(1, 0.690196, 0) | |
1959 | ManualWeld174.Name = "Weld" | |
1960 | ManualWeld174.Parent = WedgePart173 | |
1961 | ManualWeld174.C0 = CFrame.new(0, 0, 0, 0, 1, 0, -0.258819908, 0, 0.965925634, 0.965925634, 0, 0.258819908) | |
1962 | ManualWeld174.C1 = CFrame.new(0.049911499, 0.0500259399, -0.149887085, 0, -1, 0, -0.965925634, 0, -0.258819908, 0.258819908, 0, -0.965925634) | |
1963 | ManualWeld174.Part0 = WedgePart173 | |
1964 | ManualWeld174.Part1 = Part160 | |
1965 | Model175.Name = "pizza10" | |
1966 | Model175.Parent = Model0 | |
1967 | Part176.Name = "crust" | |
1968 | Part176.Parent = Model175 | |
1969 | Part176.Material = Enum.Material.Sand | |
1970 | Part176.BrickColor = BrickColor.new("Gold") | |
1971 | Part176.Rotation = Vector3.new(-180, -55, -180) | |
1972 | Part176.CanCollide = false | |
1973 | Part176.Shape = Enum.PartType.Cylinder | |
1974 | Part176.Size = Vector3.new(0.599999964, 0.200000003, 0.200000003) | |
1975 | Part176.CFrame = CFrame.new(-107.556732, 117.399246, -51.29105, -0.573577583, 0, -0.819151819, 0, 1, 0, 0.819151819, 0, -0.573577583) | |
1976 | Part176.BottomSurface = Enum.SurfaceType.Smooth | |
1977 | Part176.TopSurface = Enum.SurfaceType.Smooth | |
1978 | Part176.Color = Color3.new(0.937255, 0.721569, 0.219608) | |
1979 | Part176.Position = Vector3.new(-107.556732, 117.399246, -51.29105) | |
1980 | Part176.Orientation = Vector3.new(0, -125, 0) | |
1981 | Part176.Color = Color3.new(0.937255, 0.721569, 0.219608) | |
1982 | ManualWeld177.Name = "Weld" | |
1983 | ManualWeld177.Parent = Part176 | |
1984 | ManualWeld177.C0 = CFrame.new(0, 0, 0, -0.573577344, 0, 0.819151461, 0, 1, 0, -0.819151461, 0, -0.573577344) | |
1985 | ManualWeld177.C1 = CFrame.new(0, -0.0999908447, 0.350021362, 0, -1, 0, -0.573577464, 0, 0.81915164, -0.81915164, 0, -0.573577464) | |
1986 | ManualWeld177.Part0 = Part176 | |
1987 | ManualWeld177.Part1 = Part179 | |
1988 | ManualWeld178.Name = "Weld" | |
1989 | ManualWeld178.Parent = Part176 | |
1990 | ManualWeld178.C0 = CFrame.new(0, 0, 0, -0.573577583, 0, 0.819151819, 0, 1, 0, -0.819151819, 0, -0.573577583) | |
1991 | ManualWeld178.C1 = CFrame.new(-0.743125916, 0.199249268, -0.530879974, 1, 0, 0, 0, 1, 0, 0, 0, 1) | |
1992 | ManualWeld178.Part0 = Part176 | |
1993 | ManualWeld178.Part1 = Part1 | |
1994 | Part179.Parent = Model175 | |
1995 | Part179.Material = Enum.Material.Sand | |
1996 | Part179.BrickColor = BrickColor.new("Maroon") | |
1997 | Part179.Rotation = Vector3.new(-180, -55, 90) | |
1998 | Part179.CanCollide = false | |
1999 | Part179.Shape = Enum.PartType.Cylinder | |
2000 | Part179.Size = Vector3.new(0.0500000007, 0.150000006, 0.150000006) | |
2001 | Part179.CFrame = CFrame.new(-107.327362, 117.399246, -51.0083771, 0, -0.573577702, -0.819151998, -1, 0, 0, 0, 0.819151998, -0.573577702) | |
2002 | Part179.BottomSurface = Enum.SurfaceType.Smooth | |
2003 | Part179.TopSurface = Enum.SurfaceType.Smooth | |
2004 | Part179.Color = Color3.new(0.458824, 0, 0) | |
2005 | Part179.Position = Vector3.new(-107.327362, 117.399246, -51.0083771) | |
2006 | Part179.Orientation = Vector3.new(0, -125, -90) | |
2007 | Part179.Color = Color3.new(0.458824, 0, 0) | |
2008 | Part180.Parent = Model175 | |
2009 | Part180.Material = Enum.Material.Sand | |
2010 | Part180.BrickColor = BrickColor.new("Maroon") | |
2011 | Part180.Rotation = Vector3.new(-180, -55, 90) | |
2012 | Part180.CanCollide = false | |
2013 | Part180.Shape = Enum.PartType.Cylinder | |
2014 | Part180.Size = Vector3.new(0.0500000007, 0.150000006, 0.150000006) | |
2015 | Part180.CFrame = CFrame.new(-107.106102, 117.399246, -50.9755821, 0, -0.573577762, -0.819152117, -1, 0, 0, 0, 0.819152117, -0.573577762) | |
2016 | Part180.BottomSurface = Enum.SurfaceType.Smooth | |
2017 | Part180.TopSurface = Enum.SurfaceType.Smooth | |
2018 | Part180.Color = Color3.new(0.458824, 0, 0) | |
2019 | Part180.Position = Vector3.new(-107.106102, 117.399246, -50.9755821) | |
2020 | Part180.Orientation = Vector3.new(0, -125, -90) | |
2021 | Part180.Color = Color3.new(0.458824, 0, 0) | |
2022 | ManualWeld181.Name = "Weld" | |
2023 | ManualWeld181.Parent = Part180 | |
2024 | ManualWeld181.C0 = CFrame.new(0, 0, 0, 0, -1, 0, -0.573577344, 0, 0.819151461, -0.819151461, 0, -0.573577344) | |
2025 | ManualWeld181.C1 = CFrame.new(0, -0.100048065, -0.200057983, 0, -1, 0, -0.573577344, 0, 0.819151461, -0.819151461, 0, -0.573577344) | |
2026 | ManualWeld181.Part0 = Part180 | |
2027 | ManualWeld181.Part1 = Part179 | |
2028 | Part182.Parent = Model175 | |
2029 | Part182.Material = Enum.Material.Sand | |
2030 | Part182.BrickColor = BrickColor.new("Maroon") | |
2031 | Part182.Rotation = Vector3.new(-180, -55, 90) | |
2032 | Part182.CanCollide = false | |
2033 | Part182.Shape = Enum.PartType.Cylinder | |
2034 | Part182.Size = Vector3.new(0.0500000007, 0.150000006, 0.150000006) | |
2035 | Part182.CFrame = CFrame.new(-107.294495, 117.399246, -51.229538, 0, -0.573577821, -0.819152176, -1, 0, 0, 0, 0.819152176, -0.573577821) | |
2036 | Part182.BottomSurface = Enum.SurfaceType.Smooth | |
2037 | Part182.TopSurface = Enum.SurfaceType.Smooth | |
2038 | Part182.Color = Color3.new(0.458824, 0, 0) | |
2039 | Part182.Position = Vector3.new(-107.294495, 117.399246, -51.229538) | |
2040 | Part182.Orientation = Vector3.new(0, -125, -90) | |
2041 | Part182.Color = Color3.new(0.458824, 0, 0) | |
2042 | ManualWeld183.Name = "Weld" | |
2043 | ManualWeld183.Parent = Part182 | |
2044 | ManualWeld183.C0 = CFrame.new(0, 0, 0, 0, -1, 0, -0.573577344, 0, 0.819151461, -0.819151461, 0, -0.573577344) | |
2045 | ManualWeld183.C1 = CFrame.new(0, -0.200016022, 0.0999298096, 0, -1, 0, -0.573577404, 0, 0.81915158, -0.81915158, 0, -0.573577404) | |
2046 | ManualWeld183.Part0 = Part182 | |
2047 | ManualWeld183.Part1 = Part179 | |
2048 | Part184.Parent = Model175 | |
2049 | Part184.Material = Enum.Material.Glass | |
2050 | Part184.BrickColor = BrickColor.new("Really black") | |
2051 | Part184.Rotation = Vector3.new(-180, -55, 90) | |
2052 | Part184.CanCollide = false | |
2053 | Part184.Shape = Enum.PartType.Cylinder | |
2054 | Part184.Size = Vector3.new(0.0500000007, 0.100000001, 0.100000001) | |
2055 | Part184.CFrame = CFrame.new(-107.171722, 117.399246, -51.1435738, 0, -0.573577821, -0.819152176, -1, 0, 0, 0, 0.819152176, -0.573577821) | |
2056 | Part184.BottomSurface = Enum.SurfaceType.Smooth | |
2057 | Part184.TopSurface = Enum.SurfaceType.Smooth | |
2058 | Part184.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
2059 | Part184.Position = Vector3.new(-107.171722, 117.399246, -51.1435738) | |
2060 | Part184.Orientation = Vector3.new(0, -125, -90) | |
2061 | Part184.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
2062 | ManualWeld185.Name = "Weld" | |
2063 | ManualWeld185.Parent = Part184 | |
2064 | ManualWeld185.C0 = CFrame.new(0, 0, 0, 0, -1, 0, -0.573577344, 0, 0.819151461, -0.819151461, 0, -0.573577344) | |
2065 | ManualWeld185.C1 = CFrame.new(0, -0.200019836, -0.049949646, 0, -1, 0, -0.573577464, 0, 0.81915164, -0.81915164, 0, -0.573577464) | |
2066 | ManualWeld185.Part0 = Part184 | |
2067 | ManualWeld185.Part1 = Part179 | |
2068 | Part186.Parent = Model175 | |
2069 | Part186.Material = Enum.Material.Glass | |
2070 | Part186.BrickColor = BrickColor.new("Really black") | |
2071 | Part186.Rotation = Vector3.new(-180, -55, 90) | |
2072 | Part186.CanCollide = false | |
2073 | Part186.Shape = Enum.PartType.Cylinder | |
2074 | Part186.Size = Vector3.new(0.0500000007, 0.100000001, 0.100000001) | |
2075 | Part186.CFrame = CFrame.new(-107.450165, 117.399246, -51.0945206, 0, -0.573577821, -0.819152176, -1, 0, 0, 0, 0.819152176, -0.573577821) | |
2076 | Part186.BottomSurface = Enum.SurfaceType.Smooth | |
2077 | Part186.TopSurface = Enum.SurfaceType.Smooth | |
2078 | Part186.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
2079 | Part186.Position = Vector3.new(-107.450165, 117.399246, -51.0945206) | |
2080 | Part186.Orientation = Vector3.new(0, -125, -90) | |
2081 | Part186.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
2082 | ManualWeld187.Name = "Weld" | |
2083 | ManualWeld187.Parent = Part186 | |
2084 | ManualWeld187.C0 = CFrame.new(0, 0, 0, 0, -1, 0, -0.573577344, 0, 0.819151461, -0.819151461, 0, -0.573577344) | |
2085 | ManualWeld187.C1 = CFrame.new(0, -0.000129699707, 0.150001526, 0, -1, 0, -0.573577464, 0, 0.81915164, -0.81915164, 0, -0.573577464) | |
2086 | ManualWeld187.Part0 = Part186 | |
2087 | ManualWeld187.Part1 = Part179 | |
2088 | Part188.Parent = Model175 | |
2089 | Part188.Material = Enum.Material.Glass | |
2090 | Part188.BrickColor = BrickColor.new("Really black") | |
2091 | Part188.Rotation = Vector3.new(-180, -55, 90) | |
2092 | Part188.CanCollide = false | |
2093 | Part188.Shape = Enum.PartType.Cylinder | |
2094 | Part188.Size = Vector3.new(0.0500000007, 0.100000001, 0.100000001) | |
2095 | Part188.CFrame = CFrame.new(-106.983238, 117.399246, -50.8895531, 0, -0.573577821, -0.819152176, -1, 0, 0, 0, 0.819152176, -0.573577821) | |
2096 | Part188.BottomSurface = Enum.SurfaceType.Smooth | |
2097 | Part188.TopSurface = Enum.SurfaceType.Smooth | |
2098 | Part188.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
2099 | Part188.Position = Vector3.new(-106.983238, 117.399246, -50.8895531) | |
2100 | Part188.Orientation = Vector3.new(0, -125, -90) | |
2101 | Part188.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
2102 | ManualWeld189.Name = "Weld" | |
2103 | ManualWeld189.Parent = Part188 | |
2104 | ManualWeld189.C0 = CFrame.new(0, 0, 0, 0, -1, 0, -0.573577344, 0, 0.819151461, -0.819151461, 0, -0.573577344) | |
2105 | ManualWeld189.C1 = CFrame.new(0, -0.100048065, -0.35004425, 0, -1, 0, -0.573577464, 0, 0.81915164, -0.81915164, 0, -0.573577464) | |
2106 | ManualWeld189.Part0 = Part188 | |
2107 | ManualWeld189.Part1 = Part179 | |
2108 | WedgePart190.Parent = Model175 | |
2109 | WedgePart190.Material = Enum.Material.Slate | |
2110 | WedgePart190.BrickColor = BrickColor.new("Deep orange") | |
2111 | WedgePart190.Rotation = Vector3.new(0, -35, -90) | |
2112 | WedgePart190.CanCollide = false | |
2113 | WedgePart190.Size = Vector3.new(0.0999999046, 0.900000036, 0.299999982) | |
2114 | WedgePart190.CFrame = CFrame.new(-107.061127, 117.349403, -51.1271858, 0, 0.819152176, -0.573577821, -1, 0, 0, 0, 0.573577821, 0.819152176) | |
2115 | WedgePart190.BottomSurface = Enum.SurfaceType.Smooth | |
2116 | WedgePart190.Color = Color3.new(1, 0.690196, 0) | |
2117 | WedgePart190.Position = Vector3.new(-107.061127, 117.349403, -51.1271858) | |
2118 | WedgePart190.Orientation = Vector3.new(0, -35, -90) | |
2119 | WedgePart190.Color = Color3.new(1, 0.690196, 0) | |
2120 | ManualWeld191.Name = "Weld" | |
2121 | ManualWeld191.Parent = WedgePart190 | |
2122 | ManualWeld191.C0 = CFrame.new(0, 0, 0, 0, -1, 0, 0.819151461, 0, 0.573577344, -0.573577344, 0, 0.819151461) | |
2123 | ManualWeld191.C1 = CFrame.new(0.0498428345, -0.250026703, -0.149940491, 0, -1, 0, -0.573577464, 0, 0.81915164, -0.81915164, 0, -0.573577464) | |
2124 | ManualWeld191.Part0 = WedgePart190 | |
2125 | ManualWeld191.Part1 = Part179 | |
2126 | WedgePart192.Parent = Model175 | |
2127 | WedgePart192.Material = Enum.Material.Slate | |
2128 | WedgePart192.BrickColor = BrickColor.new("Deep orange") | |
2129 | WedgePart192.Rotation = Vector3.new(-180, 35, -90) | |
2130 | WedgePart192.CanCollide = false | |
2131 | WedgePart192.Size = Vector3.new(0.0999999046, 0.900000036, 0.299999982) | |
2132 | WedgePart192.CFrame = CFrame.new(-107.233231, 117.349403, -50.881382, -0, 0.819152176, 0.573577821, 1, 0, 0, 0, 0.573577821, -0.819152176) | |
2133 | WedgePart192.BottomSurface = Enum.SurfaceType.Smooth | |
2134 | WedgePart192.Color = Color3.new(1, 0.690196, 0) | |
2135 | WedgePart192.Position = Vector3.new(-107.233231, 117.349403, -50.881382) | |
2136 | WedgePart192.Orientation = Vector3.new(0, 145, 90) | |
2137 | WedgePart192.Color = Color3.new(1, 0.690196, 0) | |
2138 | ManualWeld193.Name = "Weld" | |
2139 | ManualWeld193.Parent = WedgePart192 | |
2140 | ManualWeld193.C0 = CFrame.new(0, 0, 0, 0, 1, 0, 0.819151461, 0, 0.573577344, 0.573577344, 0, -0.819151461) | |
2141 | ManualWeld193.C1 = CFrame.new(0.0498428345, 0.050037384, -0.14994812, 0, -1, 0, -0.573577464, 0, 0.81915164, -0.81915164, 0, -0.573577464) | |
2142 | ManualWeld193.Part0 = WedgePart192 | |
2143 | ManualWeld193.Part1 = Part179 | |
2144 | Part194.Name = "pizzaboxconstraint" | |
2145 | Part194.Parent = Model0 | |
2146 | Part194.Transparency = 1 | |
2147 | Part194.CanCollide = false | |
2148 | Part194.Shape = Enum.PartType.Cylinder | |
2149 | Part194.Size = Vector3.new(2.5, 0.400000006, 0.400000006) | |
2150 | Part194.CFrame = CFrame.new(-106.814522, 117.299988, -49.5357475, 1, 0, 0, 0, 1, 0, 0, 0, 1) | |
2151 | Part194.BottomSurface = Enum.SurfaceType.Smooth | |
2152 | Part194.TopSurface = Enum.SurfaceType.Smooth | |
2153 | Part194.Position = Vector3.new(-106.814522, 117.299988, -49.5357475) | |
2154 | ManualWeld195.Name = "Weld" | |
2155 | ManualWeld195.Parent = Part194 | |
2156 | ManualWeld195.C1 = CFrame.new(-0.000915527344, 0.0999908447, 1.22442245, 1, 0, 0, 0, 1, 0, 0, 0, 1) | |
2157 | ManualWeld195.Part0 = Part194 | |
2158 | ManualWeld195.Part1 = Part1 | |
2159 | ManualWeld196.Name = "Weld" | |
2160 | ManualWeld196.Parent = Part194 | |
2161 | ManualWeld196.C1 = CFrame.new(-0.000915527344, -0.100006104, 1.22442245, 1, 0, 0, 0, 1, 0, 0, 0, 1) | |
2162 | ManualWeld196.Part0 = Part194 | |
2163 | ManualWeld196.Part1 = Part2 | |
2164 | for i,v in pairs(mas:GetChildren()) do | |
2165 | v.Parent = char | |
2166 | pizzabox = v | |
2167 | boxconstraint = ManualWeld195 | |
2168 | top = Part2 | |
2169 | bottom = Part1 | |
2170 | piz9 = Model137 | |
2171 | breakitup = WedgePart152 | |
2172 | pcall(function() v:MakeJoints() end) | |
2173 | end | |
2174 | mas:Destroy() | |
2175 | for i,v in pairs(cors) do | |
2176 | spawn(function() | |
2177 | pcall(v) | |
2178 | end) | |
2179 | end | |
2180 | ||
2181 | ||
2182 | local rootj0 = rootj.C0 | |
2183 | local neck0 = neck.C0 | |
2184 | local LS0 = LS.C0 | |
2185 | local RS0 = RS.C0 | |
2186 | local LH0 = LH.C0 | |
2187 | local RH0 = RH.C0 | |
2188 | local rootj1 = rootj.C1 | |
2189 | local neck1 = neck.C1 | |
2190 | local LS1 = LS.C1 | |
2191 | local RS1 = RS.C1 | |
2192 | local LH1 = LH.C1 | |
2193 | local RH1 = RH.C1 | |
2194 | ||
2195 | ----------------------------------------------------------------------------------- | |
2196 | ||
2197 | local CFn = CFrame.new | |
2198 | local CFa = CFrame.Angles | |
2199 | local Rad = math.rad | |
2200 | local Sin = math.sin | |
2201 | local Cos = math.cos | |
2202 | local sine = 1 | |
2203 | ||
2204 | local boxweld = Instance.new("Weld", bottom) | |
2205 | boxweld.Part0 = rarm | |
2206 | boxweld.Part1 = bottom | |
2207 | boxweld.C1 = CFn(0.5, -0.5, 1.5) * CFa(Rad(90), 0, 0) | |
2208 | ||
2209 | local boxweld0 = boxweld.C0 | |
2210 | local boxweld1 = boxweld.C1 | |
2211 | ||
2212 | local closedframe = boxconstraint.C0 | |
2213 | local bc0 = boxconstraint.C0 | |
2214 | local bc1 = boxconstraint.C1 | |
2215 | ||
2216 | local OMFG_PIZZA = Instance.new("Sound", tor) | |
2217 | - | OMFG_PIZZA.SoundId = "rbxassetid://2980426576" |
2217 | + | OMFG_PIZZA.SoundId = "rbxassetid://1845027243" |
2218 | OMFG_PIZZA.Name = "OMFG_PIZZADUDE" | |
2219 | OMFG_PIZZA.Volume = 1.5 | |
2220 | OMFG_PIZZA.Looped = true | |
2221 | OMFG_PIZZA:Play() | |
2222 | local thepos = OMFG_PIZZA.TimePosition | |
2223 | ||
2224 | local SCOOTER = Instance.new("Sound", tor) | |
2225 | - | SCOOTER.SoundId = "rbxassetid://2980426576" |
2225 | + | SCOOTER.SoundId = "rbxassetid://1845027130" |
2226 | SCOOTER.Name = "SCOOTERDUDE" | |
2227 | SCOOTER.Volume = 1.5 | |
2228 | SCOOTER.Looped = true | |
2229 | local thepos2 = SCOOTER.TimePosition | |
2230 | ||
2231 | local PIZZA_TIME = Instance.new("Sound", head) | |
2232 | PIZZA_TIME.Name = "PIZZA_TIME_BRUTHA" | |
2233 | - | PIZZA_TIME.SoundId = "rbxassetid://711156441" |
2233 | + | PIZZA_TIME.SoundId = "rbxassetid://336377340" |
2234 | PIZZA_TIME.Volume = 0.5 | |
2235 | ||
2236 | local MAMAMIA_47 = Instance.new("Sound", head) | |
2237 | MAMAMIA_47.Name = "MAMAMIA_47" | |
2238 | - | MAMAMIA_47.SoundId = "rbxassetid://857901552" |
2238 | + | MAMAMIA_47.SoundId = "rbxassetid://798363151" |
2239 | MAMAMIA_47.Volume = 100 | |
2240 | ||
2241 | local SMACKA = Instance.new("Sound", bottom) | |
2242 | SMACKA.Name = "SMACKA" | |
2243 | - | SMACKA.SoundId = "rbxassetid://138291230" |
2243 | + | SMACKA.SoundId = "rbxassetid://535690488" |
2244 | SMACKA.Volume = 5 | |
2245 | ||
2246 | local RINGRINGRING = Instance.new("Sound", larm) | |
2247 | RINGRINGRING.Name = "RINGRINGRINGPICKUPTHEPHONE" | |
2248 | RINGRINGRING.SoundId = "rbxassetid://1414945022" | |
2249 | RINGRINGRING.Volume = 2 | |
2250 | ||
2251 | local SOOOSH = Instance.new("Sound", breakitup) | |
2252 | SOOOSH.Name = "SOOOSH" | |
2253 | SOOOSH.SoundId = "rbxassetid://158037267" | |
2254 | SOOOSH.Volume = 2 | |
2255 | ||
2256 | honk = Instance.new("Sound", tor) | |
2257 | honk.SoundId = "rbxassetid://972340421" | |
2258 | honk.Name = "HONKHONKGWETOUTOFTHEWAY" | |
2259 | honk.Looped = true | |
2260 | honk.Volume = 3 | |
2261 | ||
2262 | ----------------------------------------------------------------------------------- | |
2263 | ||
2264 | local ws = hum.WalkSpeed | |
2265 | local jp = hum.JumpPower | |
2266 | local nws = ws | |
2267 | local njp = jp | |
2268 | local opened = false | |
2269 | local attacking = false | |
2270 | local Taunting = false | |
2271 | local Smacking = false | |
2272 | local boom = false | |
2273 | local bam = false | |
2274 | local Scooting = false | |
2275 | local Boosting = false | |
2276 | local Giving = false | |
2277 | ||
2278 | ----------------------------------------------------------------------------------- | |
2279 | ||
2280 | ArtificialHB = Instance.new("BindableEvent", script) | |
2281 | ArtificialHB.Name = "Heartbeat" | |
2282 | script:WaitForChild("Heartbeat") | |
2283 | ||
2284 | frame = 1 / 60 | |
2285 | tf = 0 | |
2286 | allowframeloss = false | |
2287 | tossremainder = false | |
2288 | ||
2289 | ||
2290 | lastframe = tick() | |
2291 | script.Heartbeat:Fire() | |
2292 | ||
2293 | ||
2294 | game:GetService("RunService").Heartbeat:connect(function(s, p) | |
2295 | tf = tf + s | |
2296 | if tf >= frame then | |
2297 | if allowframeloss then | |
2298 | script.Heartbeat:Fire() | |
2299 | lastframe = tick() | |
2300 | else | |
2301 | for i = 1, math.floor(tf / frame) do | |
2302 | script.Heartbeat:Fire() | |
2303 | end | |
2304 | lastframe = tick() | |
2305 | end | |
2306 | if tossremainder then | |
2307 | tf = 0 | |
2308 | else | |
2309 | tf = tf - frame * math.floor(tf / frame) | |
2310 | end | |
2311 | end | |
2312 | end) | |
2313 | ||
2314 | function swait(num) | |
2315 | if num == 0 or num == nil then | |
2316 | game:service("RunService").Stepped:wait(0) | |
2317 | else | |
2318 | for i = 0, num do | |
2319 | game:service("RunService").Stepped:wait(0) | |
2320 | end | |
2321 | end | |
2322 | end | |
2323 | ||
2324 | function clerp(a, b, t) | |
2325 | return a:lerp(b, t) | |
2326 | end | |
2327 | ||
2328 | function Open_Close() | |
2329 | if opened == true and attacking == false then | |
2330 | opened = false | |
2331 | bc0 = closedframe | |
2332 | elseif opened == false and attacking == false then | |
2333 | opened = true | |
2334 | bc0 = closedframe * CFa(Rad(-110), 0, 0) | |
2335 | end | |
2336 | end | |
2337 | ||
2338 | function ClassicExplo(pos, range, start_size, end_size, color, rate, length, parent) | |
2339 | for i = 1,rate do | |
2340 | local ranAng = math.random(-360, 360) | |
2341 | local ranPos = math.random(-range, range) | |
2342 | local ranPos2 = math.random(-range, range) | |
2343 | local ranPos3 = math.random(-range, range) | |
2344 | local B_Effect = Instance.new("Part", parent) | |
2345 | B_Effect.Material = "Neon" | |
2346 | B_Effect.BrickColor = BrickColor.new(color) | |
2347 | B_Effect.CanCollide = false | |
2348 | B_Effect.Size = Vector3.new(start_size, start_size, start_size) | |
2349 | B_Effect.Anchored = true | |
2350 | B_Effect.CFrame = pos | |
2351 | local tweeninfo = TweenInfo.new(length, Enum.EasingStyle.Quad, Enum.EasingDirection.Out, 0, false, 0) | |
2352 | local partprop = {CFrame = pos * CFn(ranPos, ranPos2, ranPos3) * CFa(ranAng, ranAng, ranAng); Size = Vector3.new(end_size, end_size, end_size)} | |
2353 | local tween = tweenserv:Create(B_Effect, tweeninfo, partprop) | |
2354 | tween:Play() | |
2355 | game:GetService("Debris"):AddItem(B_Effect, length) | |
2356 | end | |
2357 | end | |
2358 | ||
2359 | function ZapExplo(pos, start_size, bend_size, zend_size, color, duration, parent) | |
2360 | local beam1explo = Instance.new("Part", parent) | |
2361 | beam1explo.Material = "Neon" | |
2362 | beam1explo.Shape = "Ball" | |
2363 | beam1explo.Name = "beamexploHI" | |
2364 | beam1explo.BrickColor = BrickColor.new(color) | |
2365 | beam1explo.Size = Vector3.new(start_size, start_size, start_size) | |
2366 | beam1explo.Anchored = true | |
2367 | beam1explo.CanCollide = false | |
2368 | beam1explo.CFrame = pos | |
2369 | beam2explo = Instance.new("Part", parent) | |
2370 | beam2explo.Material = "Neon" | |
2371 | beam2explo.Name = "beamexploHI" | |
2372 | beam2explo.BrickColor = BrickColor.new(color) | |
2373 | beam2explo.Size = Vector3.new(start_size, start_size, start_size) | |
2374 | beam2explo.Anchored = true | |
2375 | beam2explo.CanCollide = false | |
2376 | beam2explo.CFrame = pos | |
2377 | beam3explo = Instance.new("Part", parent) | |
2378 | beam3explo.Material = "Neon" | |
2379 | beam3explo.Name = "beamexploHI" | |
2380 | beam3explo.BrickColor = BrickColor.new(color) | |
2381 | beam3explo.Size = Vector3.new(start_size, start_size, start_size) | |
2382 | beam3explo.Anchored = true | |
2383 | beam3explo.CanCollide = false | |
2384 | beam3explo.CFrame = pos | |
2385 | local tweeninfo = TweenInfo.new(duration, Enum.EasingStyle.Quad, Enum.EasingDirection.Out, 0, false, 0) | |
2386 | local partprop = {Transparency = 1; Size = Vector3.new(bend_size, bend_size, bend_size)} | |
2387 | local tween = game:GetService("TweenService"):Create(beam1explo, tweeninfo, partprop) | |
2388 | local tweeninfo2 = TweenInfo.new(duration, Enum.EasingStyle.Quad, Enum.EasingDirection.Out, 0, false, 0) | |
2389 | local partprop2 = {Transparency = 1; Size = Vector3.new(zend_size, zend_size, zend_size)} | |
2390 | local tween2 = game:GetService("TweenService"):Create(beam2explo, tweeninfo2, partprop2) | |
2391 | local tween3 = game:GetService("TweenService"):Create(beam3explo, tweeninfo2, partprop2) | |
2392 | tween:Play() | |
2393 | tween2:Play() | |
2394 | tween3:Play() | |
2395 | game:GetService("Debris"):AddItem(beam1explo, duration) | |
2396 | game:GetService("Debris"):AddItem(beam2explo, duration) | |
2397 | game:GetService("Debris"):AddItem(beam3explo, duration) | |
2398 | coroutine.resume(coroutine.create(function() | |
2399 | for i = 1,math.huge do | |
2400 | if beam2explo then | |
2401 | local ranAng2 = math.random(-360, 360) | |
2402 | beam2explo.CFrame = beam2explo.CFrame * CFrame.Angles(math.rad(ranAng2), math.rad(ranAng2), math.rad(ranAng2)) | |
2403 | end | |
2404 | if beam3explo then | |
2405 | local ranAng3 = math.random(-360, 360) | |
2406 | beam3explo.CFrame = beam3explo.CFrame * CFrame.Angles(math.rad(ranAng3), math.rad(ranAng3), math.rad(ranAng3)) | |
2407 | end | |
2408 | if not beam2explo or not beam3explo then | |
2409 | break | |
2410 | end | |
2411 | wait() | |
2412 | end | |
2413 | end)) | |
2414 | end | |
2415 | ||
2416 | function Taunt() | |
2417 | if attacking == false and Taunting == false and opened == false then | |
2418 | attacking = true | |
2419 | Taunting = true | |
2420 | hum.WalkSpeed = 2 | |
2421 | hum.JumpPower = 5 | |
2422 | for i = 0,1,.1 do | |
2423 | boxconstraint.C1 = clerp(boxconstraint.C1, bc1, i) | |
2424 | boxconstraint.C0 = clerp(boxconstraint.C0, bc0, i) | |
2425 | boxweld.C1 = clerp(boxweld.C1, boxweld1 * CFn(0.2, 0, -0.3) * CFa(Rad(-40), 0, 0), i) | |
2426 | neck.C1 = clerp(neck.C1, neck1 * CFa(Rad(10), 0, Rad(-20)), i) | |
2427 | rootj.C1 = clerp(rootj.C1, rootj1, i) | |
2428 | LS.C1 = clerp(LS.C1, LS1 * CFn(0, 0.3, 0.2), i) | |
2429 | RS.C1 = clerp(RS.C1, RS1 * CFa(Rad(2), 0, 0), i) | |
2430 | LH.C1 = clerp(LH.C1, LH1 * CFa(Rad(2), Rad(-5), 0), i) | |
2431 | RH.C1 = clerp(RH.C1, RH1 * CFa(Rad(2), Rad(5), 0), i) | |
2432 | LS.C0 = clerp(LS.C0, LS0 * CFa(0, 0, Rad(-170)), i) | |
2433 | RS.C0 = clerp(RS.C0, RS0 * CFa(Rad(-10), 0, Rad(10)), i) | |
2434 | LH.C0 = clerp(LH.C0, LH0, i) | |
2435 | RH.C0 = clerp(RH.C0, RH0, i) | |
2436 | swait() | |
2437 | end | |
2438 | for i = 0,1,.1 do | |
2439 | boxconstraint.C1 = clerp(boxconstraint.C1, bc1, i) | |
2440 | boxconstraint.C0 = clerp(boxconstraint.C0, bc0, i) | |
2441 | boxweld.C1 = clerp(boxweld.C1, boxweld1 * CFn(0.2, 0, -0.3) * CFa(Rad(-40), 0, 0), i) | |
2442 | neck.C1 = clerp(neck.C1, neck1 * CFa(Rad(10), 0, Rad(-20)), i) | |
2443 | rootj.C1 = clerp(rootj.C1, rootj1 * CFa(Rad(-20), 0, 0), i) | |
2444 | LS.C1 = clerp(LS.C1, LS1 * CFn(0, 0.3, 0.2), i) | |
2445 | RS.C1 = clerp(RS.C1, RS1 * CFa(Rad(2), 0, 0), i) | |
2446 | LH.C1 = clerp(LH.C1, LH1 * CFa(Rad(2), Rad(-5), Rad(20)), i) | |
2447 | RH.C1 = clerp(RH.C1, RH1 * CFa(Rad(2), Rad(5), Rad(-20)), i) | |
2448 | LS.C0 = clerp(LS.C0, LS0 * CFa(0, 0, Rad(-130)), i) | |
2449 | RS.C0 = clerp(RS.C0, RS0 * CFa(Rad(-20), 0, Rad(30)), i) | |
2450 | LH.C0 = clerp(LH.C0, LH0, i) | |
2451 | RH.C0 = clerp(RH.C0, RH0, i) | |
2452 | swait() | |
2453 | end | |
2454 | if not larm:FindFirstChild("RINGRINGRINGPICKUPTHEPHONE") then | |
2455 | RINGRINGRING = Instance.new("Sound", larm) | |
2456 | RINGRINGRING.Name = "RINGRINGRINGPICKUPTHEPHONE" | |
2457 | RINGRINGRING.SoundId = "rbxassetid://1414945022" | |
2458 | RINGRINGRING.Volume = 2 | |
2459 | RINGRINGRING:Play() | |
2460 | else | |
2461 | RINGRINGRING = larm:FindFirstChild("RINGRINGRINGPICKUPTHEPHONE") | |
2462 | RINGRINGRING:Play() | |
2463 | end | |
2464 | for i = 0,1,.05 do | |
2465 | boxconstraint.C1 = clerp(boxconstraint.C1, bc1, i) | |
2466 | boxconstraint.C0 = clerp(boxconstraint.C0, bc0, i) | |
2467 | boxweld.C1 = clerp(boxweld.C1, boxweld1 * CFn(0.2, 0, -0.3) * CFa(Rad(-40), 0, 0), i) | |
2468 | neck.C1 = clerp(neck.C1, neck1, i) | |
2469 | rootj.C1 = clerp(rootj.C1, rootj1, i) | |
2470 | LS.C1 = clerp(LS.C1, LS1 * CFn(0, 0.3, 0.2), i) | |
2471 | RS.C1 = clerp(RS.C1, RS1 * CFa(Rad(2), 0, 0), i) | |
2472 | LH.C1 = clerp(LH.C1, LH1 * CFa(Rad(2), Rad(-5), 0), i) | |
2473 | RH.C1 = clerp(RH.C1, RH1 * CFa(Rad(2), Rad(5), 0), i) | |
2474 | LS.C0 = clerp(LS.C0, LS0 * CFa(0, 0, Rad(-170)), i) | |
2475 | RS.C0 = clerp(RS.C0, RS0 * CFa(Rad(-10), 0, Rad(10)), i) | |
2476 | LH.C0 = clerp(LH.C0, LH0, i) | |
2477 | RH.C0 = clerp(RH.C0, RH0, i) | |
2478 | swait() | |
2479 | end | |
2480 | for i = 0,1,.15 do | |
2481 | boxconstraint.C1 = clerp(boxconstraint.C1, bc1, i) | |
2482 | boxconstraint.C0 = clerp(boxconstraint.C0, bc0, i) | |
2483 | boxweld.C1 = clerp(boxweld.C1, boxweld1 * CFn(0.2, 0, -0.3) * CFa(Rad(-40), 0, 0), i) | |
2484 | neck.C1 = clerp(neck.C1, neck1 * CFa(Rad(-5), 0, 0), i) | |
2485 | rootj.C1 = clerp(rootj.C1, rootj1, i) | |
2486 | LS.C1 = clerp(LS.C1, LS1 * CFn(0, 0.3, 0.2) * CFa(Rad(-20), 0, 0), i) | |
2487 | RS.C1 = clerp(RS.C1, RS1 * CFa(Rad(2), 0, 0), i) | |
2488 | LH.C1 = clerp(LH.C1, LH1 * CFa(Rad(2), Rad(-5), 0), i) | |
2489 | RH.C1 = clerp(RH.C1, RH1 * CFa(Rad(2), Rad(5), 0), i) | |
2490 | LS.C0 = clerp(LS.C0, LS0 * CFa(0, 0, Rad(-80)), i) | |
2491 | RS.C0 = clerp(RS.C0, RS0 * CFa(0, 0, Rad(30)), i) | |
2492 | LH.C0 = clerp(LH.C0, LH0, i) | |
2493 | RH.C0 = clerp(RH.C0, RH0, i) | |
2494 | swait() | |
2495 | end | |
2496 | if not head:FindFirstChild("PIZZA_TIME_BRUTHA") then | |
2497 | PIZZA_TIME = Instance.new("Sound", head) | |
2498 | PIZZA_TIME.Name = "PIZZA_TIME_BRUTHA" | |
2499 | PIZZA_TIME.SoundId = "rbxassetid://749833201" | |
2500 | PIZZA_TIME.Volume = 2 | |
2501 | PIZZA_TIME:Play() | |
2502 | else | |
2503 | PIZZA_TIME = head:FindFirstChild("PIZZA_TIME_BRUTHA") | |
2504 | PIZZA_TIME:Play() | |
2505 | end | |
2506 | for i = 0,1,.05 do | |
2507 | boxconstraint.C1 = clerp(boxconstraint.C1, bc1, i) | |
2508 | boxconstraint.C0 = clerp(boxconstraint.C0, bc0 * CFa(Rad(-40), 0, 0), i) | |
2509 | boxweld.C1 = clerp(boxweld.C1, boxweld1 * CFn(0.2, 0, -0.3) * CFa(Rad(-40), 0, 0), i) | |
2510 | neck.C1 = clerp(neck.C1, neck1, i) | |
2511 | rootj.C1 = clerp(rootj.C1, rootj1, i) | |
2512 | LS.C1 = clerp(LS.C1, LS1 * CFn(0, 0.3, 0.2) * CFa(Rad(-20), 0, 0), i) | |
2513 | RS.C1 = clerp(RS.C1, RS1 * CFa(Rad(2), 0, 0), i) | |
2514 | LH.C1 = clerp(LH.C1, LH1 * CFa(Rad(2), Rad(-5), 0), i) | |
2515 | RH.C1 = clerp(RH.C1, RH1 * CFa(Rad(2), Rad(5), 0), i) | |
2516 | LS.C0 = clerp(LS.C0, LS0 * CFa(0, 0, Rad(-120)), i) | |
2517 | RS.C0 = clerp(RS.C0, RS0 * CFa(0, 0, Rad(50)), i) | |
2518 | LH.C0 = clerp(LH.C0, LH0, i) | |
2519 | RH.C0 = clerp(RH.C0, RH0, i) | |
2520 | swait() | |
2521 | end | |
2522 | for i = 0,1,.15 do | |
2523 | boxconstraint.C1 = clerp(boxconstraint.C1, bc1, i) | |
2524 | boxconstraint.C0 = clerp(boxconstraint.C0, bc0, i) | |
2525 | boxweld.C1 = clerp(boxweld.C1, boxweld1 * CFn(0.2, 0, -0.3) * CFa(Rad(-40), 0, 0), i) | |
2526 | neck.C1 = clerp(neck.C1, neck1 * CFa(Rad(-5), 0, 0), i) | |
2527 | rootj.C1 = clerp(rootj.C1, rootj1, i) | |
2528 | LS.C1 = clerp(LS.C1, LS1 * CFn(0, 0.3, 0.2) * CFa(Rad(-20), 0, 0), i) | |
2529 | RS.C1 = clerp(RS.C1, RS1 * CFa(Rad(2), 0, 0), i) | |
2530 | LH.C1 = clerp(LH.C1, LH1 * CFa(Rad(2), Rad(-5), 0), i) | |
2531 | RH.C1 = clerp(RH.C1, RH1 * CFa(Rad(2), Rad(5), 0), i) | |
2532 | LS.C0 = clerp(LS.C0, LS0 * CFa(0, 0, Rad(-80)), i) | |
2533 | RS.C0 = clerp(RS.C0, RS0 * CFa(0, 0, Rad(50)), i) | |
2534 | LH.C0 = clerp(LH.C0, LH0, i) | |
2535 | RH.C0 = clerp(RH.C0, RH0, i) | |
2536 | swait() | |
2537 | end | |
2538 | hum.WalkSpeed = nws | |
2539 | hum.JumpPower = njp | |
2540 | attacking = false | |
2541 | Taunting = false | |
2542 | elseif attacking == false and Taunting == false and opened == true then | |
2543 | attacking = true | |
2544 | Taunting = true | |
2545 | hum.WalkSpeed = 2 | |
2546 | hum.JumpPower = 5 | |
2547 | for i = 0,1,.1 do | |
2548 | boxconstraint.C1 = clerp(boxconstraint.C1, bc1, i) | |
2549 | boxconstraint.C0 = clerp(boxconstraint.C0, bc0, i) | |
2550 | boxweld.C1 = clerp(boxweld.C1, boxweld1 * CFn(-2, -2, 0) * CFa(Rad(30), 0, Rad(130)), i) | |
2551 | neck.C1 = clerp(neck.C1, neck1 * CFa(Rad(-5), 0, 0), i) | |
2552 | rootj.C1 = clerp(rootj.C1, rootj1, i) | |
2553 | LS.C1 = clerp(LS.C1, LS1 * CFa(Rad(-5), 0, 0), i) | |
2554 | RS.C1 = clerp(RS.C1, RS1 * CFa(Rad(2), 0, 0), i) | |
2555 | LH.C1 = clerp(LH.C1, LH1 * CFa(Rad(2), Rad(-5), 0), i) | |
2556 | RH.C1 = clerp(RH.C1, RH1 * CFa(Rad(2), Rad(5), 0), i) | |
2557 | LS.C0 = clerp(LS.C0, LS0 * CFa(0, 0, Rad(-130)), i) | |
2558 | RS.C0 = clerp(RS.C0, RS0 * CFa(0, 0, Rad(60)), i) | |
2559 | LH.C0 = clerp(LH.C0, LH0, i) | |
2560 | RH.C0 = clerp(RH.C0, RH0, i) | |
2561 | swait() | |
2562 | end | |
2563 | for i = 0,1,.1 do | |
2564 | boxconstraint.C1 = clerp(boxconstraint.C1, bc1, i) | |
2565 | boxconstraint.C0 = clerp(boxconstraint.C0, bc0, i) | |
2566 | boxweld.C1 = clerp(boxweld.C1, boxweld1 * CFn(-2, -2, 0) * CFa(Rad(30), 0, Rad(130)), i) | |
2567 | neck.C1 = clerp(neck.C1, neck1 * CFa(Rad(-20), 0, 0), i) | |
2568 | rootj.C1 = clerp(rootj.C1, rootj1, i) | |
2569 | LS.C1 = clerp(LS.C1, LS1 * CFn(0, 0.3, 0.2) * CFa(Rad(-50), 0, 0), i) | |
2570 | RS.C1 = clerp(RS.C1, RS1 * CFa(Rad(2), 0, 0), i) | |
2571 | LH.C1 = clerp(LH.C1, LH1 * CFa(Rad(2), Rad(-5), 0), i) | |
2572 | RH.C1 = clerp(RH.C1, RH1 * CFa(Rad(2), Rad(5), 0), i) | |
2573 | LS.C0 = clerp(LS.C0, LS0 * CFa(0, 0, Rad(-100)), i) | |
2574 | RS.C0 = clerp(RS.C0, RS0 * CFa(0, 0, Rad(65)), i) | |
2575 | LH.C0 = clerp(LH.C0, LH0, i) | |
2576 | RH.C0 = clerp(RH.C0, RH0, i) | |
2577 | swait() | |
2578 | end | |
2579 | local piz = piz9:Clone() | |
2580 | for i,v in pairs(piz9:GetChildren()) do | |
2581 | if v:IsA("BasePart") then | |
2582 | v.Transparency = 1 | |
2583 | end | |
2584 | end | |
2585 | local CRUSTYY = piz:FindFirstChild("crust") | |
2586 | local GETOFFNOOB = CRUSTYY:FindFirstChild("NOUNOOB") | |
2587 | GETOFFNOOB:Destroy() | |
2588 | piz.Parent = pizzabox | |
2589 | local neww = Instance.new("Weld", CRUSTYY) | |
2590 | neww.Part0 = larm | |
2591 | neww.Part1 = CRUSTYY | |
2592 | neww.C1 = CFn(1, 0.3, -0.2) * CFa(Rad(90), Rad(30), Rad(-110)) | |
2593 | if not head:FindFirstChild("MAMAMIA_47") then | |
2594 | MAMAMIA_47 = Instance.new("Sound", head) | |
2595 | MAMAMIA_47.Name = "MAMAMIA_47" | |
2596 | MAMAMIA_47.SoundId = "rbxassetid://1205895814" | |
2597 | MAMAMIA_47.Volume = 2 | |
2598 | MAMAMIA_47:Play() | |
2599 | else | |
2600 | MAMAMIA_47 = head:FindFirstChild("MAMAMIA_47") | |
2601 | MAMAMIA_47:Play() | |
2602 | end | |
2603 | for i = 0,1,.1 do | |
2604 | boxconstraint.C1 = clerp(boxconstraint.C1, bc1, i) | |
2605 | boxconstraint.C0 = clerp(boxconstraint.C0, bc0, i) | |
2606 | boxweld.C1 = clerp(boxweld.C1, boxweld1 * CFn(-2, -2, 0) * CFa(Rad(30), 0, Rad(130)), i) | |
2607 | neck.C1 = clerp(neck.C1, neck1 * CFa(Rad(-5), 0, 0), i) | |
2608 | rootj.C1 = clerp(rootj.C1, rootj1, i) | |
2609 | LS.C1 = clerp(LS.C1, LS1 * CFa(Rad(-70), 0, 0), i) | |
2610 | RS.C1 = clerp(RS.C1, RS1 * CFa(Rad(2), 0, 0), i) | |
2611 | LH.C1 = clerp(LH.C1, LH1 * CFa(Rad(2), Rad(-5), 0), i) | |
2612 | RH.C1 = clerp(RH.C1, RH1 * CFa(Rad(2), Rad(5), 0), i) | |
2613 | LS.C0 = clerp(LS.C0, LS0 * CFa(0, 0, Rad(-120)), i) | |
2614 | RS.C0 = clerp(RS.C0, RS0 * CFa(0, 0, Rad(60)), i) | |
2615 | LH.C0 = clerp(LH.C0, LH0, i) | |
2616 | RH.C0 = clerp(RH.C0, RH0, i) | |
2617 | swait() | |
2618 | end | |
2619 | hum.Health = hum.Health + 30 | |
2620 | for i = 0,1,.1 do | |
2621 | boxconstraint.C1 = clerp(boxconstraint.C1, bc1, i) | |
2622 | boxconstraint.C0 = clerp(boxconstraint.C0, bc0, i) | |
2623 | boxweld.C1 = clerp(boxweld.C1, boxweld1 * CFn(-2, -2, 0) * CFa(Rad(30), 0, Rad(130)), i) | |
2624 | neck.C1 = clerp(neck.C1, neck1 * CFa(Rad(15), 0, 0), i) | |
2625 | rootj.C1 = clerp(rootj.C1, rootj1, i) | |
2626 | LS.C1 = clerp(LS.C1, LS1 * CFa(Rad(65), 0, 0), i) | |
2627 | RS.C1 = clerp(RS.C1, RS1 * CFa(Rad(2), 0, 0), i) | |
2628 | LH.C1 = clerp(LH.C1, LH1 * CFa(Rad(2), Rad(-5), 0), i) | |
2629 | RH.C1 = clerp(RH.C1, RH1 * CFa(Rad(2), Rad(5), 0), i) | |
2630 | LS.C0 = clerp(LS.C0, LS0 * CFa(0, 0, Rad(-120)), i) | |
2631 | RS.C0 = clerp(RS.C0, RS0 * CFa(0, 0, Rad(60)), i) | |
2632 | LH.C0 = clerp(LH.C0, LH0, i) | |
2633 | RH.C0 = clerp(RH.C0, RH0, i) | |
2634 | swait() | |
2635 | end | |
2636 | piz:Destroy() | |
2637 | for i,v in pairs(piz9:GetChildren()) do | |
2638 | if v:IsA("BasePart") then | |
2639 | v.Transparency = 0 | |
2640 | end | |
2641 | end | |
2642 | hum.WalkSpeed = nws | |
2643 | hum.JumpPower = njp | |
2644 | Taunting = false | |
2645 | attacking = false | |
2646 | elseif attacking == true and Scooting == true then | |
2647 | if not tor:FindFirstChild("HONKHONKGWETOUTOFTHEWAY") then | |
2648 | honk = Instance.new("Sound", tor) | |
2649 | honk.Name = "HONKHONKGWETOUTOFTHEWAY" | |
2650 | honk.SoundId = "rbxassetid://972340421" | |
2651 | honk.Volume = 3 | |
2652 | honk.Looped = true | |
2653 | honk:Play() | |
2654 | else | |
2655 | honk = tor:FindFirstChild("HONKHONKGWETOUTOFTHEWAY") | |
2656 | honk:Play() | |
2657 | end | |
2658 | end | |
2659 | end | |
2660 | ||
2661 | function Smack() | |
2662 | if attacking == false and Smacking == false and opened == false then | |
2663 | attacking = true | |
2664 | Smacking = true | |
2665 | boom = false | |
2666 | hum.WalkSpeed = 2 | |
2667 | hum.JumpPower = 5 | |
2668 | local bye = bottom.Touched:connect(function(hit) | |
2669 | if not hit:IsDescendantOf(char) and hit.Parent:FindFirstChildOfClass("Humanoid") and boom == false then | |
2670 | local theman = hit.Parent | |
2671 | local thehum = theman:FindFirstChildOfClass("Humanoid") | |
2672 | thehum.Health = thehum.Health - 40 | |
2673 | if not bottom:FindFirstChild("SMACKA") then | |
2674 | SMACKA = Instance.new("Sound", bottom) | |
2675 | SMACKA.Name = "SMACKA" | |
2676 | SMACKA.SoundId = "rbxassetid://145486953" | |
2677 | SMACKA.Volume = 2 | |
2678 | SMACKA:Play() | |
2679 | else | |
2680 | SMACKA = bottom:FindFirstChild("SMACKA") | |
2681 | SMACKA:Play() | |
2682 | end | |
2683 | boom = true | |
2684 | elseif not hit:IsDescendantOf(char) and hit.Parent.Parent:FindFirstChildOfClass("Humanoid") and boom == false then | |
2685 | local theman = hit.Parent.Parent | |
2686 | local thehum = theman:FindFirstChildOfClass("Humanoid") | |
2687 | thehum.Health = thehum.Health - 40 | |
2688 | boom = true | |
2689 | end | |
2690 | end) | |
2691 | for i = 0,1,.15 do | |
2692 | boxconstraint.C1 = clerp(boxconstraint.C1, bc1, i) | |
2693 | boxconstraint.C0 = clerp(boxconstraint.C0, bc0, i) | |
2694 | boxweld.C1 = clerp(boxweld.C1, boxweld1 * CFn(1, 0, 0), i) | |
2695 | neck.C1 = clerp(neck.C1, neck1 * CFa(Rad(30), 0, 0), i) | |
2696 | rootj.C1 = clerp(rootj.C1, rootj1 * CFa(Rad(20), 0, 0), i) | |
2697 | LS.C1 = clerp(LS.C1, LS1 * CFn(0, 0.3, 0.2), i) | |
2698 | RS.C1 = clerp(RS.C1, RS1 * CFa(Rad(2), 0, 0), i) | |
2699 | LH.C1 = clerp(LH.C1, LH1 * CFa(Rad(2), Rad(-5), Rad(30)), i) | |
2700 | RH.C1 = clerp(RH.C1, RH1 * CFa(Rad(2), Rad(5), Rad(15)), i) | |
2701 | LS.C0 = clerp(LS.C0, LS0 * CFa(0, 0, Rad(-150)), i) | |
2702 | RS.C0 = clerp(RS.C0, RS0 * CFa(0, 0, Rad(150)), i) | |
2703 | LH.C0 = clerp(LH.C0, LH0, i) | |
2704 | RH.C0 = clerp(RH.C0, RH0, i) | |
2705 | swait() | |
2706 | end | |
2707 | for i = 0,1,.2 do | |
2708 | boxconstraint.C1 = clerp(boxconstraint.C1, bc1, i) | |
2709 | boxconstraint.C0 = clerp(boxconstraint.C0, bc0, i) | |
2710 | boxweld.C1 = clerp(boxweld.C1, boxweld1 * CFn(1, 0, 0), i) | |
2711 | neck.C1 = clerp(neck.C1, neck1 * CFa(Rad(-20), 0, 0), i) | |
2712 | rootj.C1 = clerp(rootj.C1, rootj1 * CFa(Rad(-10), 0, 0), i) | |
2713 | LS.C1 = clerp(LS.C1, LS1 * CFn(0, 0.3, 0.2), i) | |
2714 | RS.C1 = clerp(RS.C1, RS1 * CFa(Rad(2), 0, 0), i) | |
2715 | LH.C1 = clerp(LH.C1, LH1 * CFa(Rad(2), Rad(-5), Rad(-35)), i) | |
2716 | RH.C1 = clerp(RH.C1, RH1 * CFa(Rad(2), Rad(5), Rad(-12)), i) | |
2717 | LS.C0 = clerp(LS.C0, LS0 * CFa(0, 0, Rad(-10)), i) | |
2718 | RS.C0 = clerp(RS.C0, RS0 * CFa(0, 0, Rad(10)), i) | |
2719 | LH.C0 = clerp(LH.C0, LH0, i) | |
2720 | RH.C0 = clerp(RH.C0, RH0, i) | |
2721 | swait() | |
2722 | end | |
2723 | bye:disconnect() | |
2724 | boom = false | |
2725 | hum.WalkSpeed = nws | |
2726 | hum.JumpPower = njp | |
2727 | Smacking = false | |
2728 | attacking = false | |
2729 | elseif attacking == false and Smacking == false and opened == true then | |
2730 | attacking = true | |
2731 | Smacking = true | |
2732 | boom = false | |
2733 | for i = 0,1,.15 do | |
2734 | boxconstraint.C1 = clerp(boxconstraint.C1, bc1, i) | |
2735 | boxconstraint.C0 = clerp(boxconstraint.C0, bc0, i) | |
2736 | boxweld.C1 = clerp(boxweld.C1, boxweld1 * CFn(-2, -2, 0) * CFa(Rad(30), 0, Rad(130)), i) | |
2737 | neck.C1 = clerp(neck.C1, neck1 * CFa(Rad(-20), 0, Rad(10)), i) | |
2738 | rootj.C1 = clerp(rootj.C1, rootj1, i) | |
2739 | LS.C1 = clerp(LS.C1, LS1 * CFn(0, 0.3, 0.2) * CFa(Rad(-50), 0, 0), i) | |
2740 | RS.C1 = clerp(RS.C1, RS1 * CFa(Rad(2), 0, 0), i) | |
2741 | LH.C1 = clerp(LH.C1, LH1 * CFa(Rad(2), Rad(-5), 0), i) | |
2742 | RH.C1 = clerp(RH.C1, RH1 * CFa(Rad(2), Rad(5), 0), i) | |
2743 | LS.C0 = clerp(LS.C0, LS0 * CFa(0, 0, Rad(-100)), i) | |
2744 | RS.C0 = clerp(RS.C0, RS0 * CFa(0, 0, Rad(65)), i) | |
2745 | LH.C0 = clerp(LH.C0, LH0, i) | |
2746 | RH.C0 = clerp(RH.C0, RH0, i) | |
2747 | swait() | |
2748 | end | |
2749 | local piz = piz9:Clone() | |
2750 | for i,v in pairs(piz9:GetChildren()) do | |
2751 | if v:IsA("BasePart") then | |
2752 | v.Transparency = 1 | |
2753 | end | |
2754 | end | |
2755 | local CRUSTYY = piz:FindFirstChild("crust") | |
2756 | local GETOFFNOOB = CRUSTYY:FindFirstChild("NOUNOOB") | |
2757 | local HEYHEYBREAKITUP = piz:FindFirstChild("SlicePart") | |
2758 | GETOFFNOOB:Destroy() | |
2759 | piz.Parent = pizzabox | |
2760 | local neww = Instance.new("Weld", CRUSTYY) | |
2761 | neww.Part0 = larm | |
2762 | neww.Part1 = CRUSTYY | |
2763 | neww.C1 = CFn(0, 0, 1) * CFa(Rad(90), 0, 0) | |
2764 | local hey = HEYHEYBREAKITUP.Touched:connect(function(hit) | |
2765 | if not hit:IsDescendantOf(char) and hit.Parent:FindFirstChildOfClass("Humanoid") and boom == false then | |
2766 | local theman = hit.Parent | |
2767 | local thehum = theman:FindFirstChildOfClass("Humanoid") | |
2768 | thehum.Health = thehum.Health - 20 | |
2769 | boom = true | |
2770 | elseif not hit:IsDescendantOf(char) and hit.Parent.Parent:FindFirstChildOfClass("Humanoid") and boom == false then | |
2771 | local theman = hit.Parent.Parent | |
2772 | local thehum = theman:FindFirstChildOfClass("Humanoid") | |
2773 | thehum.Health = thehum.Health - 20 | |
2774 | boom = true | |
2775 | end | |
2776 | end) | |
2777 | if not HEYHEYBREAKITUP:FindFirstChild("SOOOSH") then | |
2778 | SOOOSH = Instance.new("Sound", HEYHEYBREAKITUP) | |
2779 | SOOOSH.Name = "SOOOSH" | |
2780 | SOOOSH.SoundId = "rbxassetid://158037267" | |
2781 | SOOOSH.Volume = 2 | |
2782 | SOOOSH:Play() | |
2783 | else | |
2784 | SOOOSH = HEYHEYBREAKITUP:FindFirstChild("SOOOSH") | |
2785 | SOOOSH:Play() | |
2786 | end | |
2787 | for i = 0,1,.2 do | |
2788 | boxconstraint.C1 = clerp(boxconstraint.C1, bc1, i) | |
2789 | boxconstraint.C0 = clerp(boxconstraint.C0, bc0, i) | |
2790 | boxweld.C1 = clerp(boxweld.C1, boxweld1 * CFn(-2, -2, 0) * CFa(Rad(30), 0, Rad(130)), i) | |
2791 | neck.C1 = clerp(neck.C1, neck1 * CFa(Rad(-20), 0, Rad(-20)), i) | |
2792 | rootj.C1 = clerp(rootj.C1, rootj1, i) | |
2793 | LS.C1 = clerp(LS.C1, LS1 * CFn(0, 0.3, 0.2) * CFa(Rad(110), 0, 0), i) | |
2794 | RS.C1 = clerp(RS.C1, RS1 * CFa(Rad(30), 0, 0), i) | |
2795 | LH.C1 = clerp(LH.C1, LH1 * CFa(Rad(2), Rad(-5), 0), i) | |
2796 | RH.C1 = clerp(RH.C1, RH1 * CFa(Rad(2), Rad(5), 0), i) | |
2797 | LS.C0 = clerp(LS.C0, LS0 * CFa(0, 0, Rad(-100)), i) | |
2798 | RS.C0 = clerp(RS.C0, RS0 * CFa(0, 0, Rad(65)), i) | |
2799 | LH.C0 = clerp(LH.C0, LH0, i) | |
2800 | RH.C0 = clerp(RH.C0, RH0, i) | |
2801 | swait() | |
2802 | end | |
2803 | hey:disconnect() | |
2804 | boom = false | |
2805 | piz:Destroy() | |
2806 | for i,v in pairs(piz9:GetChildren()) do | |
2807 | if v:IsA("BasePart") then | |
2808 | v.Transparency = 0 | |
2809 | end | |
2810 | end | |
2811 | hum.WalkSpeed = nws | |
2812 | hum.JumpPower = njp | |
2813 | Smacking = false | |
2814 | attacking = false | |
2815 | end | |
2816 | end | |
2817 | ||
2818 | function Scooter() | |
2819 | if attacking == false and Scooting == false then | |
2820 | attacking = true | |
2821 | Scooting = true | |
2822 | hum.JumpPower = 25 | |
2823 | hum.WalkSpeed = nws + 20 | |
2824 | OMFG_PIZZA:Stop() | |
2825 | SCOOTER:Play() | |
2826 | scoota = Instance.new("Part", char) | |
2827 | scoota.Size = Vector3.new(0.5, 4, 6) | |
2828 | scoota.CanCollide = false | |
2829 | local scootam = Instance.new("SpecialMesh", scoota) | |
2830 | scootam.Scale = Vector3.new(1.25, 1.25, 1.25) | |
2831 | scootam.TextureId = "rbxassetid://168119260" | |
2832 | scootam.MeshType = "FileMesh" | |
2833 | scootam.MeshId = "rbxassetid://168119231" | |
2834 | local scootaw = Instance.new("Weld", scoota) | |
2835 | scootaw.Part0 = tor | |
2836 | scootaw.Part1 = scoota | |
2837 | scootaw.C1 = CFn(0, 1, 0.5) | |
2838 | local fire = Instance.new("Part", char) | |
2839 | fire.Size = Vector3.new(1, 1, 1) | |
2840 | fire.CanCollide = false | |
2841 | fire.Transparency = 1 | |
2842 | local firew = Instance.new("Weld", fire) | |
2843 | firew.Part0 = scoota | |
2844 | firew.Part1 = fire | |
2845 | firew.C1 = CFn(0, 2, 2) | |
2846 | fireem = Instance.new("ParticleEmitter", fire) | |
2847 | fireem.EmissionDirection = "Back" | |
2848 | fireem.Color = ColorSequence.new({ColorSequenceKeypoint.new(0, Color3.fromRGB(162, 162, 162)), ColorSequenceKeypoint.new(1, Color3.fromRGB(139, 139, 139))}) | |
2849 | fireem.Size = NumberSequence.new({NumberSequenceKeypoint.new(0, 0.1, 0), NumberSequenceKeypoint.new(1, 0.813, 0)}) | |
2850 | fireem.Texture = "rbxassetid://290833005" | |
2851 | fireem.Transparency = NumberSequence.new({NumberSequenceKeypoint.new(0, 0, 0), NumberSequenceKeypoint.new(1, 0.8, 0)}) | |
2852 | fireem.Lifetime = NumberRange.new(0.7) | |
2853 | fireem.Rate = 200 | |
2854 | fireem.LockedToPart = true | |
2855 | fireem.Rotation = NumberRange.new(1, 360) | |
2856 | fireem.RotSpeed = NumberRange.new(360) | |
2857 | fireem.Speed = NumberRange.new(4) | |
2858 | fireem.SpreadAngle = Vector2.new(30, 5) | |
2859 | fireem.Enabled = false | |
2860 | elseif attacking == true and Scooting == true then | |
2861 | SCOOTER:Stop() | |
2862 | OMFG_PIZZA:Play() | |
2863 | scoota:Destroy() | |
2864 | hum.JumpPower = njp | |
2865 | hum.WalkSpeed = nws | |
2866 | Scooting = false | |
2867 | attacking = false | |
2868 | end | |
2869 | end | |
2870 | ||
2871 | function scootahit() | |
2872 | if scoota and Boosting == true and Scooting == true and attacking == true then | |
2873 | asd = scoota.Touched:connect(function(hit) | |
2874 | if not hit:IsDescendantOf(char) and hit.Parent:FindFirstChildOfClass("Humanoid") and bam == false then | |
2875 | local hithum = hit.Parent:FindFirstChildOfClass("Humanoid") | |
2876 | hithum.Health = hithum.Health - 30 | |
2877 | bam = true | |
2878 | wait(0.5) | |
2879 | bam = false | |
2880 | end | |
2881 | end) | |
2882 | end | |
2883 | end | |
2884 | ||
2885 | function PizzaGive() | |
2886 | if attacking == false and Giving == false then | |
2887 | attacking = true | |
2888 | Giving = true | |
2889 | hum.WalkSpeed = 2 | |
2890 | hum.JumpPower = 5 | |
2891 | if opened == true then | |
2892 | for i = 0,1,.1 do | |
2893 | boxconstraint.C1 = clerp(boxconstraint.C1, bc1, i) | |
2894 | boxconstraint.C0 = clerp(boxconstraint.C0, bc0, i) | |
2895 | boxweld.C1 = clerp(boxweld.C1, boxweld1 * CFn(-2, -2, 0) * CFa(Rad(30), 0, Rad(130)), i) | |
2896 | neck.C1 = clerp(neck.C1, neck1 * CFa(Rad(-5), 0, 0), i) | |
2897 | rootj.C1 = clerp(rootj.C1, rootj1, i) | |
2898 | LS.C1 = clerp(LS.C1, LS1 * CFa(Rad(-5), 0, 0), i) | |
2899 | RS.C1 = clerp(RS.C1, RS1 * CFa(Rad(2), 0, 0), i) | |
2900 | LH.C1 = clerp(LH.C1, LH1 * CFa(Rad(2), Rad(-5), 0), i) | |
2901 | RH.C1 = clerp(RH.C1, RH1 * CFa(Rad(2), Rad(5), 0), i) | |
2902 | LS.C0 = clerp(LS.C0, LS0 * CFa(0, 0, Rad(-130)), i) | |
2903 | RS.C0 = clerp(RS.C0, RS0 * CFa(0, 0, Rad(60)), i) | |
2904 | LH.C0 = clerp(LH.C0, LH0, i) | |
2905 | RH.C0 = clerp(RH.C0, RH0, i) | |
2906 | swait() | |
2907 | end | |
2908 | for i = 0,1,.1 do | |
2909 | boxconstraint.C1 = clerp(boxconstraint.C1, bc1, i) | |
2910 | boxconstraint.C0 = clerp(boxconstraint.C0, bc0, i) | |
2911 | boxweld.C1 = clerp(boxweld.C1, boxweld1 * CFn(-2, -2, 0) * CFa(Rad(30), 0, Rad(130)), i) | |
2912 | neck.C1 = clerp(neck.C1, neck1 * CFa(Rad(-20), 0, 0), i) | |
2913 | rootj.C1 = clerp(rootj.C1, rootj1, i) | |
2914 | LS.C1 = clerp(LS.C1, LS1 * CFn(0, 0.3, 0.2) * CFa(Rad(-50), 0, 0), i) | |
2915 | RS.C1 = clerp(RS.C1, RS1 * CFa(Rad(2), 0, 0), i) | |
2916 | LH.C1 = clerp(LH.C1, LH1 * CFa(Rad(2), Rad(-5), 0), i) | |
2917 | RH.C1 = clerp(RH.C1, RH1 * CFa(Rad(2), Rad(5), 0), i) | |
2918 | LS.C0 = clerp(LS.C0, LS0 * CFa(0, 0, Rad(-100)), i) | |
2919 | RS.C0 = clerp(RS.C0, RS0 * CFa(0, 0, Rad(65)), i) | |
2920 | LH.C0 = clerp(LH.C0, LH0, i) | |
2921 | RH.C0 = clerp(RH.C0, RH0, i) | |
2922 | swait() | |
2923 | end | |
2924 | local piz = piz9:Clone() | |
2925 | for i,v in pairs(piz9:GetChildren()) do | |
2926 | if v:IsA("BasePart") then | |
2927 | v.Transparency = 1 | |
2928 | end | |
2929 | end | |
2930 | local CRUSTYY = piz:FindFirstChild("crust") | |
2931 | local GETOFFNOOB = CRUSTYY:FindFirstChild("NOUNOOB") | |
2932 | GETOFFNOOB:Destroy() | |
2933 | piz.Parent = pizzabox | |
2934 | local neww = Instance.new("Weld", CRUSTYY) | |
2935 | neww.Part0 = larm | |
2936 | neww.Part1 = CRUSTYY | |
2937 | neww.C1 = CFn(0, 0, 1) * CFa(Rad(90), 0, 0) | |
2938 | for i = 0,1,.1 do | |
2939 | boxconstraint.C1 = clerp(boxconstraint.C1, bc1, i) | |
2940 | boxconstraint.C0 = clerp(boxconstraint.C0, bc0, i) | |
2941 | boxweld.C1 = clerp(boxweld.C1, boxweld1 * CFn(-2, -2, 0) * CFa(Rad(30), 0, Rad(130)), i) | |
2942 | neck.C1 = clerp(neck.C1, neck1 * CFa(Rad(-5), 0, 0), i) | |
2943 | rootj.C1 = clerp(rootj.C1, rootj1, i) | |
2944 | LS.C1 = clerp(LS.C1, LS1 * CFa(Rad(5), 0, 0), i) | |
2945 | RS.C1 = clerp(RS.C1, RS1 * CFa(Rad(2), 0, 0), i) | |
2946 | LH.C1 = clerp(LH.C1, LH1 * CFa(Rad(2), Rad(-5), 0), i) | |
2947 | RH.C1 = clerp(RH.C1, RH1 * CFa(Rad(2), Rad(5), 0), i) | |
2948 | LS.C0 = clerp(LS.C0, LS0 * CFa(0, 0, Rad(30)), i) | |
2949 | RS.C0 = clerp(RS.C0, RS0 * CFa(0, 0, Rad(60)), i) | |
2950 | LH.C0 = clerp(LH.C0, LH0, i) | |
2951 | RH.C0 = clerp(RH.C0, RH0, i) | |
2952 | swait() | |
2953 | end | |
2954 | for i = 0,1,.1 do | |
2955 | boxconstraint.C1 = clerp(boxconstraint.C1, bc1, i) | |
2956 | boxconstraint.C0 = clerp(boxconstraint.C0, bc0, i) | |
2957 | boxweld.C1 = clerp(boxweld.C1, boxweld1 * CFn(-2, -2, 0) * CFa(Rad(30), 0, Rad(130)), i) | |
2958 | neck.C1 = clerp(neck.C1, neck1, i) | |
2959 | rootj.C1 = clerp(rootj.C1, rootj1, i) | |
2960 | LS.C1 = clerp(LS.C1, LS1, i) | |
2961 | RS.C1 = clerp(RS.C1, RS1 * CFa(Rad(2), 0, 0), i) | |
2962 | LH.C1 = clerp(LH.C1, LH1 * CFa(Rad(2), Rad(-5), 0), i) | |
2963 | RH.C1 = clerp(RH.C1, RH1 * CFa(Rad(2), Rad(5), 0), i) | |
2964 | LS.C0 = clerp(LS.C0, LS0 * CFa(0, 0, Rad(-30)), i) | |
2965 | RS.C0 = clerp(RS.C0, RS0 * CFa(0, 0, Rad(60)), i) | |
2966 | LH.C0 = clerp(LH.C0, LH0, i) | |
2967 | RH.C0 = clerp(RH.C0, RH0, i) | |
2968 | swait() | |
2969 | end | |
2970 | neww:Destroy() | |
2971 | local dis2 = (CRUSTYY.Position - Mouse.Hit.p).unit * -1 | |
2972 | CRUSTYY.Velocity = dis2 * 70 + Vector3.new(0, 2, 0) | |
2973 | local CRUSTYYbf = Instance.new("BodyForce", CRUSTYY) | |
2974 | CRUSTYYbf.force = Vector3.new(0, CRUSTYY:GetMass() * 70, 0) | |
2975 | for i,v in pairs(piz:GetChildren()) do | |
2976 | if v:IsA("BasePart") then | |
2977 | v.CanCollide = true | |
2978 | end | |
2979 | end | |
2980 | for i,v in pairs(piz9:GetChildren()) do | |
2981 | if v:IsA("BasePart") then | |
2982 | v.Transparency = 0 | |
2983 | end | |
2984 | end | |
2985 | coroutine.resume(coroutine.create(function() | |
2986 | wait(1.5) | |
2987 | ClassicExplo(CRUSTYY.CFrame, 30, 5, 0.05, "Deep orange", 20, 1, workspace) | |
2988 | ZapExplo(CRUSTYY.CFrame, 0.1, 40, 20, "Deep orange", 1, workspace) | |
2989 | local explo = Instance.new("Explosion", workspace) | |
2990 | explo.Position = CRUSTYY.Position | |
2991 | explo.Visible = false | |
2992 | piz:Destroy() | |
2993 | end)) | |
2994 | end | |
2995 | hum.WalkSpeed = nws | |
2996 | hum.JumpPower = njp | |
2997 | Giving = false | |
2998 | attacking = false | |
2999 | end | |
3000 | end | |
3001 | ||
3002 | ----------------------------------------------------------------------------------- | |
3003 | ||
3004 | function kdown(k) | |
3005 | if k == "q" then | |
3006 | Open_Close() | |
3007 | elseif k == "t" then | |
3008 | Taunt() | |
3009 | elseif string.byte(k) == 50 then | |
3010 | Scooter() | |
3011 | elseif string.byte(k) == 48 then | |
3012 | if attacking == true and Scooting == true and Boosting == false then | |
3013 | hum.WalkSpeed = nws + 45 | |
3014 | Boosting = true | |
3015 | fireem.Enabled = true | |
3016 | if scoota then | |
3017 | scootahit() | |
3018 | end | |
3019 | end | |
3020 | elseif k == "r" then | |
3021 | PizzaGive() | |
3022 | end | |
3023 | end | |
3024 | ||
3025 | function kup(k) | |
3026 | if k == "t" then | |
3027 | honk:Stop() | |
3028 | elseif string.byte(k) == 48 then | |
3029 | if Scooting == true and attacking == true and Boosting == true then | |
3030 | hum.WalkSpeed = nws + 20 | |
3031 | asd:disconnect() | |
3032 | fireem.Enabled = false | |
3033 | bam = false | |
3034 | Boosting = false | |
3035 | end | |
3036 | end | |
3037 | end | |
3038 | ||
3039 | function lmdown() | |
3040 | Smack() | |
3041 | end | |
3042 | ||
3043 | Mouse.KeyDown:connect(kdown) | |
3044 | Mouse.KeyUp:connect(kup) | |
3045 | Mouse.Button1Down:connect(lmdown) | |
3046 | ||
3047 | ----------------------------------------------------------------------------------- | |
3048 | ||
3049 | warn([[ | |
3050 | ||
3051 | ||
3052 | Pizza Guy. | |
3053 | ||
3054 | A boy who lost both of their parents when he was 5. | |
3055 | The parents said: "Son, always eat pizzas and be hap--GAH". | |
3056 | The boy didn't, forever. | |
3057 | One day, the boy got "roasted" about that his chad-rents were murdered and thought of what they said before they died. | |
3058 | "I will beat the murderer's butt with my pizza!", he screamed. | |
3059 | He decided to work at CHAD'S PIZZA, and now he lives a happy life with two chad-ren. | |
3060 | ||
3061 | His name is Sam. | |
3062 | ||
3063 | last updated: 2019/3/21, 14:38 SEČ. | |
3064 | ]]) | |
3065 | ||
3066 | while true do | |
3067 | swait() | |
3068 | sine = sine + 1 | |
3069 | local torvel = (root.Velocity * Vector3.new(1, 0, 1)).magnitude | |
3070 | if Taunting == true then | |
3071 | state = "Taunting" | |
3072 | elseif Smacking == true then | |
3073 | state = "Smacking" | |
3074 | elseif Giving == true then | |
3075 | state = "Giving" | |
3076 | elseif 1 < root.Velocity.y and Scooting == false then | |
3077 | state = "Jump" | |
3078 | elseif -1 > root.Velocity.y and Scooting == false then | |
3079 | state = "Fall" | |
3080 | elseif torvel < 1 and Scooting == false then | |
3081 | state = "Idle" | |
3082 | elseif tor.Velocity.magnitude < 60 and Scooting == false then | |
3083 | state = "Walk" | |
3084 | elseif torvel < 1 and Scooting == true then | |
3085 | state = "SIdle" | |
3086 | elseif tor.Velocity.magnitude < 60 and Scooting == true then | |
3087 | state = "SWalk" | |
3088 | end | |
3089 | if state == "Jump" then | |
3090 | boxconstraint.C1 = clerp(boxconstraint.C1, bc1, 0.15) | |
3091 | boxconstraint.C0 = clerp(boxconstraint.C0, bc0, 0.15) | |
3092 | boxweld.C1 = clerp(boxweld.C1, boxweld1, 0.15) | |
3093 | neck.C1 = clerp(neck.C1, neck1 * CFa(Rad(-2), 0, 0), 0.15) | |
3094 | rootj.C1 = clerp(rootj.C1, rootj1 * CFa(Rad(-15), 0, 0), 0.15) | |
3095 | LS.C1 = clerp(LS.C1, LS1 * CFa(Rad(-60), 0, Rad(3)), 0.15) | |
3096 | RS.C1 = clerp(RS.C1, RS1 * CFa(Rad(2), 0, Rad(-3)), 0.15) | |
3097 | LH.C1 = clerp(LH.C1, LH1 * CFn(0, -0.2, 0) * CFa(Rad(2), 0, Rad(-15)), 0.15) | |
3098 | RH.C1 = clerp(RH.C1, RH1 * CFn(0, -0.5, 0) * CFa(Rad(2), 0, Rad(25)), 0.15) | |
3099 | LS.C0 = clerp(LS.C0, LS0 * CFa(0, 0, Rad(-90)), 0.15) | |
3100 | RS.C0 = clerp(RS.C0, RS0 * CFa(0, 0, Rad(80)), 0.15) | |
3101 | LH.C0 = clerp(LH.C0, LH0 * CFn(-0.2, 0, 0), 0.15) | |
3102 | RH.C0 = clerp(RH.C0, RH0 * CFn(0.5, 0, 0), 0.15) | |
3103 | elseif state == "Fall" then | |
3104 | boxconstraint.C1 = clerp(boxconstraint.C1, bc1, 0.15) | |
3105 | boxconstraint.C0 = clerp(boxconstraint.C0, bc0, 0.15) | |
3106 | boxweld.C1 = clerp(boxweld.C1, boxweld1, 0.15) | |
3107 | neck.C1 = clerp(neck.C1, neck1 * CFa(0, 0, 0), 0.15) | |
3108 | rootj.C1 = clerp(rootj.C1, rootj1 * CFa(Rad(15), 0, 0), 0.15) | |
3109 | LS.C1 = clerp(LS.C1, LS1 * CFa(Rad(-60), 0, Rad(3)), 0.15) | |
3110 | RS.C1 = clerp(RS.C1, RS1 * CFa(Rad(2), 0, Rad(-3)), 0.15) | |
3111 | LH.C1 = clerp(LH.C1, LH1 * CFn(0.2, -0.2, -0.1) * CFa(Rad(15), 0, Rad(80)), 0.15) | |
3112 | RH.C1 = clerp(RH.C1, RH1 * CFn(-0.2, -0.2, -0.1) * CFa(Rad(15), 0, Rad(-80)), 0.15) | |
3113 | LS.C0 = clerp(LS.C0, LS0 * CFa(0, 0, Rad(-140)), 0.15) | |
3114 | RS.C0 = clerp(RS.C0, RS0 * CFa(0, 0, Rad(130)), 0.15) | |
3115 | LH.C0 = clerp(LH.C0, LH0 * CFa(0, 0, Rad(-20)), 0.15) | |
3116 | RH.C0 = clerp(RH.C0, RH0 * CFa(0, 0, Rad(20)), 0.15) | |
3117 | elseif state == "Idle" then | |
3118 | boxconstraint.C1 = clerp(boxconstraint.C1, bc1, 0.15) | |
3119 | boxconstraint.C0 = clerp(boxconstraint.C0, bc0, 0.15) | |
3120 | boxweld.C1 = clerp(boxweld.C1, boxweld1, 0.15) | |
3121 | neck.C1 = clerp(neck.C1, neck1 * CFa(Rad(-15 * Cos(sine / 15)), 0, 0), 0.15) | |
3122 | rootj.C1 = clerp(rootj.C1, rootj1 * CFn(0, 0, 0.025 * Cos(sine / 15)), 0.15) | |
3123 | LS.C1 = clerp(LS.C1, LS1 * CFa(Rad(-60), 0, Rad(3 * Cos(sine / 15))), 0.15) | |
3124 | RS.C1 = clerp(RS.C1, RS1 * CFa(Rad(2), 0, Rad(-3 * Cos(sine / 15))), 0.15) | |
3125 | LH.C1 = clerp(LH.C1, LH1 * CFn(0, -0.025 * Cos(sine / 15), 0) * CFa(Rad(5), Rad(-5), 0), 0.15) | |
3126 | RH.C1 = clerp(RH.C1, RH1 * CFn(0, -0.025 * Cos(sine / 15), 0) * CFa(Rad(5), Rad(5), 0), 0.15) | |
3127 | LS.C0 = clerp(LS.C0, LS0 * CFa(0, 0, Rad(-80)), 0.15) | |
3128 | RS.C0 = clerp(RS.C0, RS0 * CFa(0, 0, Rad(60)), 0.15) | |
3129 | LH.C0 = clerp(LH.C0, LH0, 0.15) | |
3130 | RH.C0 = clerp(RH.C0, RH0, 0.15) | |
3131 | elseif state == "Walk" then | |
3132 | boxconstraint.C1 = clerp(boxconstraint.C1, bc1, 0.15) | |
3133 | boxconstraint.C0 = clerp(boxconstraint.C0, bc0, 0.15) | |
3134 | boxweld.C1 = clerp(boxweld.C1, boxweld1, 0.15) | |
3135 | neck.C1 = clerp(neck.C1, neck1 * CFa(Rad(-5), 0, 0), 0.15) | |
3136 | rootj.C1 = clerp(rootj.C1, rootj1 * CFn(0, 0.1 * Cos(sine /3), 0.1 * Cos(sine /3)) * CFa(Rad(-5), 0, Rad(5 * Cos(sine / 6))), 0.15) | |
3137 | LS.C1 = clerp(LS.C1, LS1 * CFa(Rad(-60), 0, Rad(3 * Cos(sine / 6))), 0.15) | |
3138 | RS.C1 = clerp(RS.C1, RS1 * CFa(Rad(2), 0, Rad(-3 * Cos(sine / 6))), 0.15) | |
3139 | LH.C1 = clerp(LH.C1, LH1 * CFa(Rad(2), Rad(-5), Rad(50 * Cos(sine / 6))), 0.15) | |
3140 | RH.C1 = clerp(RH.C1, RH1 * CFa(Rad(2), Rad(5), Rad(50 * Cos(sine / 6))), 0.15) | |
3141 | LS.C0 = clerp(LS.C0, LS0 * CFa(0, 0, Rad(-100)), 0.15) | |
3142 | RS.C0 = clerp(RS.C0, RS0 * CFa(0, 0, Rad(80)), 0.15) | |
3143 | LH.C0 = clerp(LH.C0, LH0, 0.15) | |
3144 | RH.C0 = clerp(RH.C0, RH0, 0.15) | |
3145 | elseif state == "SIdle" then | |
3146 | boxconstraint.C1 = clerp(boxconstraint.C1, bc1, 0.15) | |
3147 | boxconstraint.C0 = clerp(boxconstraint.C0, bc0, 0.15) | |
3148 | boxweld.C1 = clerp(boxweld.C1, boxweld1 * CFn(1, -4.5, -0.5), 0.15) | |
3149 | neck.C1 = clerp(neck.C1, neck1 * CFa(0, Rad(-10 * Cos(sine / 10)), 0), 0.15) | |
3150 | rootj.C1 = clerp(rootj.C1, rootj1 * CFn(0, 0, -0.25), 0.15) | |
3151 | LS.C1 = clerp(LS.C1, LS1 * CFn(0, 0.4, 0) * CFa(Rad(2), 0, 0), 0.15) | |
3152 | RS.C1 = clerp(RS.C1, RS1 * CFn(0, 0.4, 0) * CFa(Rad(2), 0, 0), 0.15) | |
3153 | LH.C1 = clerp(LH.C1, LH1 * CFa(Rad(5), Rad(-5), Rad(85)), 0.15) | |
3154 | RH.C1 = clerp(RH.C1, RH1 * CFa(Rad(5), Rad(5), Rad(-85)), 0.15) | |
3155 | LS.C0 = clerp(LS.C0, LS0 * CFa(0, 0, Rad(-90)), 0.15) | |
3156 | RS.C0 = clerp(RS.C0, RS0 * CFa(0, 0, Rad(90)), 0.15) | |
3157 | LH.C0 = clerp(LH.C0, LH0 * CFa(0, 0, Rad(10 * Cos(sine / 10))), 0.15) | |
3158 | RH.C0 = clerp(RH.C0, RH0 * CFa(0, 0, Rad(10 * Cos(sine / 10))), 0.15) | |
3159 | elseif state == "SWalk" then | |
3160 | boxconstraint.C1 = clerp(boxconstraint.C1, bc1, 0.15) | |
3161 | boxconstraint.C0 = clerp(boxconstraint.C0, bc0, 0.15) | |
3162 | boxweld.C1 = clerp(boxweld.C1, boxweld1 * CFn(1, -4.5, -0.5), 0.15) | |
3163 | neck.C1 = clerp(neck.C1, neck1 * CFa(Rad(-5), 0, 0), 0.15) | |
3164 | if Boosting == true then | |
3165 | rootj.C1 = clerp(rootj.C1, rootj1 * CFn(0, 0, -0.85) * CFa(Rad(-15), 0, 0), 0.15) | |
3166 | else | |
3167 | rootj.C1 = clerp(rootj.C1, rootj1 * CFn(0, 0, -0.5) * CFa(Rad(-7), 0, 0), 0.15) | |
3168 | end | |
3169 | LS.C1 = clerp(LS.C1, LS1 * CFn(0, 0.4, 0) * CFa(Rad(2), 0, 0), 0.15) | |
3170 | RS.C1 = clerp(RS.C1, RS1 * CFn(0, 0.4, 0) * CFa(Rad(2), 0, 0), 0.15) | |
3171 | LH.C1 = clerp(LH.C1, LH1 * CFa(Rad(2), 0, Rad(85)), 0.15) | |
3172 | RH.C1 = clerp(RH.C1, RH1 * CFa(Rad(2), 0, Rad(-85)), 0.15) | |
3173 | LS.C0 = clerp(LS.C0, LS0 * CFa(0, 0, Rad(-90)), 0.15) | |
3174 | RS.C0 = clerp(RS.C0, RS0 * CFa(0, 0, Rad(90)), 0.15) | |
3175 | LH.C0 = clerp(LH.C0, LH0 * CFa(0, 0, Rad(10 * Cos(sine / 10))), 0.15) | |
3176 | RH.C0 = clerp(RH.C0, RH0 * CFa(0, 0, Rad(10 * Cos(sine / 10))), 0.15) | |
3177 | end | |
3178 | if not tor:FindFirstChild("OMFG_PIZZADUDE") and Scooting == false then | |
3179 | OMFG_PIZZA = Instance.new("Sound", tor) | |
3180 | OMFG_PIZZA.SoundId = "rbxassetid://916855205" | |
3181 | OMFG_PIZZA.Name = "OMFG_PIZZADUDE" | |
3182 | OMFG_PIZZA.Volume = 1.5 | |
3183 | OMFG_PIZZA.TimePosition = thepos | |
3184 | OMFG_PIZZA.Looped = true | |
3185 | OMFG_PIZZA:Play() | |
3186 | end | |
3187 | if not tor:FindFirstChild("SCOOTERDUDE") and Scooting == true then | |
3188 | SCOOTER = Instance.new("Sound", tor) | |
3189 | SCOOTER.SoundId = "rbxassetid://210237012" | |
3190 | SCOOTER.Name = "SCOOTERDUDE" | |
3191 | SCOOTER.Volume = 1.5 | |
3192 | SCOOTER.TimePosition = thepos2 | |
3193 | SCOOTER.Looped = true | |
3194 | SCOOTER:Play() | |
3195 | end | |
3196 | thepos = OMFG_PIZZA.TimePosition | |
3197 | thepos2 = SCOOTER.TimePosition | |
3198 | end |