· 5 years ago · Feb 03, 2020, 03:48 AM
1if game:GetService("RunService"):IsClient() then error("Script must be server-side in order to work; use h/ and not hl/") end
2local Player,game,owner = owner,game
3local RealPlayer = Player
4do
5 local RealPlayer = RealPlayer
6 script.Parent = RealPlayer.Character
7
8 --Fake event to make stuff like Mouse.KeyDown work
9 local Disconnect_Function = function(this)
10 this[1].Functions[this[2]] = nil
11 end
12 local Disconnect_Metatable = {__index={disconnect=Disconnect_Function,Disconnect=Disconnect_Function}}
13 local FakeEvent_Metatable = {__index={
14 Connect = function(this,f)
15 local i = tostring(math.random(0,10000))
16 while this.Functions[i] do
17 i = tostring(math.random(0,10000))
18 end
19 this.Functions[i] = f
20 return setmetatable({this,i},Disconnect_Metatable)
21 end
22 }}
23 FakeEvent_Metatable.__index.connect = FakeEvent_Metatable.__index.Connect
24 local function fakeEvent()
25 return setmetatable({Functions={}},FakeEvent_Metatable)
26 end
27
28 --Creating fake input objects with fake variables
29 local FakeMouse = {Hit=CFrame.new(),KeyUp=fakeEvent(),KeyDown=fakeEvent(),Button1Up=fakeEvent(),Button1Down=fakeEvent(),Button2Up=fakeEvent(),Button2Down=fakeEvent()}
30 FakeMouse.keyUp = FakeMouse.KeyUp
31 FakeMouse.keyDown = FakeMouse.KeyDown
32 local UIS = {InputBegan=fakeEvent(),InputEnded=fakeEvent()}
33 local CAS = {Actions={},BindAction=function(self,name,fun,touch,...)
34 CAS.Actions[name] = fun and {Name=name,Function=fun,Keys={...}} or nil
35 end}
36 --Merged 2 functions into one by checking amount of arguments
37 CAS.UnbindAction = CAS.BindAction
38
39 --This function will trigger the events that have been :Connect()'ed
40 local function TriggerEvent(self,ev,...)
41 for _,f in pairs(self[ev].Functions) do
42 f(...)
43 end
44 end
45 FakeMouse.TriggerEvent = TriggerEvent
46 UIS.TriggerEvent = TriggerEvent
47
48 --Client communication
49 local Event = Instance.new("RemoteEvent")
50 Event.Name = "UserInput_Event"
51 Event.OnServerEvent:Connect(function(plr,io)
52 if plr~=RealPlayer then return end
53 FakeMouse.Target = io.Target
54 FakeMouse.Hit = io.Hit
55 if not io.isMouse then
56 local b = io.UserInputState == Enum.UserInputState.Begin
57 if io.UserInputType == Enum.UserInputType.MouseButton1 then
58 return FakeMouse:TriggerEvent(b and "Button1Down" or "Button1Up")
59 end
60 if io.UserInputType == Enum.UserInputType.MouseButton2 then
61 return FakeMouse:TriggerEvent(b and "Button2Down" or "Button2Up")
62 end
63 for _,t in pairs(CAS.Actions) do
64 for _,k in pairs(t.Keys) do
65 if k==io.KeyCode then
66 t.Function(t.Name,io.UserInputState,io)
67 end
68 end
69 end
70 FakeMouse:TriggerEvent(b and "KeyDown" or "KeyUp",io.KeyCode.Name:lower())
71 UIS:TriggerEvent(b and "InputBegan" or "InputEnded",io,false)
72 end
73 end)
74 Event.Parent = NLS([==[local Event = script:WaitForChild("UserInput_Event")
75 local Mouse = owner:GetMouse()
76 local UIS = game:GetService("UserInputService")
77 local input = function(io,RobloxHandled)
78 if RobloxHandled then return end
79 --Since InputObject is a client-side instance, we create and pass table instead
80 Event:FireServer({KeyCode=io.KeyCode,UserInputType=io.UserInputType,UserInputState=io.UserInputState,Hit=Mouse.Hit,Target=Mouse.Target})
81 end
82 UIS.InputBegan:Connect(input)
83 UIS.InputEnded:Connect(input)
84
85 local h,t
86 --Give the server mouse data every second frame, but only if the values changed
87 --If player is not moving their mouse, client won't fire events
88 local HB = game:GetService("RunService").Heartbeat
89 while true do
90 if h~=Mouse.Hit or t~=Mouse.Target then
91 h,t=Mouse.Hit,Mouse.Target
92 Event:FireServer({isMouse=true,Target=t,Hit=h})
93 end
94 --Wait 2 frames
95 for i=1,2 do
96 HB:Wait()
97 end
98 end]==],script)
99
100 ----Sandboxed game object that allows the usage of client-side methods and services
101 --Real game object
102 local RealGame = game
103
104 --Metatable for fake service
105 local FakeService_Metatable = {
106 __index = function(self,k)
107 local s = rawget(self,"_RealService")
108 if s then
109 return typeof(s[k])=="function"
110 and function(_,...)return s[k](s,...)end or s[k]
111 end
112 end,
113 __newindex = function(self,k,v)
114 local s = rawget(self,"_RealService")
115 if s then s[k]=v end
116 end
117 }
118 local function FakeService(t,RealService)
119 t._RealService = typeof(RealService)=="string" and RealGame:GetService(RealService) or RealService
120 return setmetatable(t,FakeService_Metatable)
121 end
122
123 --Fake game object
124 local FakeGame = {
125 GetService = function(self,s)
126 return rawget(self,s) or RealGame:GetService(s)
127 end,
128 Players = FakeService({
129 LocalPlayer = FakeService({GetMouse=function(self)return FakeMouse end},Player)
130 },"Players"),
131 UserInputService = FakeService(UIS,"UserInputService"),
132 ContextActionService = FakeService(CAS,"ContextActionService"),
133 RunService = FakeService({
134 _btrs = {},
135 RenderStepped = RealGame:GetService("RunService").Heartbeat,
136 BindToRenderStep = function(self,name,_,fun)
137 self._btrs[name] = self.Heartbeat:Connect(fun)
138 end,
139 UnbindFromRenderStep = function(self,name)
140 self._btrs[name]:Disconnect()
141 end,
142 },"RunService")
143 }
144 rawset(FakeGame.Players,"localPlayer",FakeGame.Players.LocalPlayer)
145 FakeGame.service = FakeGame.GetService
146 FakeService(FakeGame,game)
147 --Changing owner to fake player object to support owner:GetMouse()
148 game,owner = FakeGame,FakeGame.Players.LocalPlayer
149end
150
151wait(1)
152workspace.CurrentCamera:ClearAllChildren()
153 for i,v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
154 if v:IsA("Humanoid") then
155 v.Name = "Police"
156 v.PlatformStand = false
157 v.AutoRotate = true
158 v.NameOcclusion = "NoOcclusion"
159 v.DisplayDistanceType = "None"
160 v.MaxHealth = math.huge
161 v.Health = math.huge
162 end
163 end
164Offffu = false
165ES = false
166Debounce = false
167KNIPED = false
168ATACK = false
169EWE = false
170local AT = Instance.new("Attachment")
171AT.Parent = game.Players.LocalPlayer.Character.Torso
172AT.Name = "TorquePos"
173local deny = {"No."}
174local NoLift = {"No."}
175Choke = false
176RemakeJoints = false
177Secks = false
178GAS = false
179script.Archivable = false
180Hulmet = Instance.new("Part")
181Hulmet.Position = Hulmet.Position + Vector3.new(0,10,0)
182Hulmet.Parent = game.Players.LocalPlayer.Character
183Hulmet.Name = "Helmet"
184Hulmet.Size = Vector3.new(1.643, 1.157, 1.696)
185Hulmet.Material = Enum.Material.Metal
186Hulmet.BrickColor = BrickColor.new("Really black")
187MSHE = Instance.new("SpecialMesh")
188MSHE.Parent = Hulmet
189MSHE.MeshId = "rbxassetid://1011491872"
190WULD = Instance.new("Weld")
191WULD.Parent = Hulmet
192WULD.Part0 = Hulmet
193WULD.Part1 = game.Players.LocalPlayer.Character.Head
194WULD.C1 = CFrame.Angles(0,-.7,0)
195WULD.C0 = CFrame.new(0,-.6,0)
196
197
198char049 = game.Players.LocalPlayer.Character
199
200pcall(function()
201for i, v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
202 if v:IsA("Accessory") then
203 v:Destroy()
204end
205end
206end)
207
208pcall(function()
209for i, v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
210 if v:IsA("Shirt") then
211 v:Destroy()
212end
213end
214end)
215
216pcall(function()
217for i, v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
218 if v:IsA("Pants") then
219 v:Destroy()
220end
221end
222end)
223
224pcall(function()
225for i, v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
226 if v:IsA("ShirtGraphic") then
227 v:Destroy()
228end
229end
230end)
231
232pcall(function()
233for i, v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
234 if v:IsA("Hat") then
235 v:Destroy()
236end
237end
238end)
239
240pcall(function()
241for i, v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
242 if v:IsA("CharacterMesh") then
243 v:Destroy()
244end
245end
246end)
247wait()
248for i,v in pairs(char049:GetChildren()) do if v:IsA("Pants") then v:Remove() end end
249wait()
250shirt = Instance.new("Shirt", char049)
251shirt.Name = "Shirt"
252pants = Instance.new("Pants", char049)
253pants.Name = "Pants"
254
255char049.Shirt.ShirtTemplate = "rbxassetid://766861384"
256char049.Pants.PantsTemplate = "rbxassetid://243651286"
257
258HEIL = false
259Standby = false
260Create = LoadLibrary("RbxUtility").Create
261function RemoveOutlines(part)
262 part.TopSurface, part.BottomSurface, part.LeftSurface, part.RightSurface, part.FrontSurface, part.BackSurface = 10, 10, 10, 10, 10, 10
263end
264
265CFuncs = {
266 ["Part"] = {
267 Create = function(Parent, Material, Reflectance, Transparency, BColor, Name, Size)
268 local Part = Create("Part"){
269 Parent = Parent,
270 Reflectance = Reflectance,
271 Transparency = Transparency,
272 CanCollide = false,
273 Locked = true,
274 BrickColor = BrickColor.new(tostring(BColor)),
275 Name = Name,
276 Size = Size,
277 Material = Material,
278 }
279 RemoveOutlines(Part)
280 return Part
281 end;
282 };
283
284 ["Mesh"] = {
285 Create = function(Mesh, Part, MeshType, MeshId, OffSet, Scale)
286 local Msh = Create(Mesh){
287 Parent = Part,
288 Offset = OffSet,
289 Scale = Scale,
290 }
291 if Mesh == "SpecialMesh" then
292 Msh.MeshType = MeshType
293 Msh.MeshId = MeshId
294 end
295 return Msh
296 end;
297 };
298
299 ["Mesh"] = {
300 Create = function(Mesh, Part, MeshType, MeshId, OffSet, Scale)
301 local Msh = Create(Mesh){
302 Parent = Part,
303 Offset = OffSet,
304 Scale = Scale,
305 }
306 if Mesh == "SpecialMesh" then
307 Msh.MeshType = MeshType
308 Msh.MeshId = MeshId
309 end
310 return Msh
311 end;
312 };
313
314 ["Weld"] = {
315 Create = function(Parent, Part0, Part1, C0, C1)
316 local Weld = Create("Weld"){
317 Parent = Parent,
318 Part0 = Part0,
319 Part1 = Part1,
320 C0 = C0,
321 C1 = C1,
322 }
323 return Weld
324 end;
325 };
326
327 ["Sound"] = {
328 Create = function(id, par, vol, pit)
329 coroutine.resume(coroutine.create(function()
330 local S = Create("Sound"){
331 Volume = vol,
332 Pitch = pit or 1,
333 SoundId = id,
334 Parent = par or workspace,
335 }
336 wait()
337 S:play()
338 game:GetService("Debris"):AddItem(S, 6)
339 end))
340 end;
341 };
342
343 ["ParticleEmitter"] = {
344 Create = function(Parent, Color1, Color2, LightEmission, Size, Texture, Transparency, ZOffset, Accel, Drag, LockedToPart, VelocityInheritance, EmissionDirection, Enabled, LifeTime, Rate, Rotation, RotSpeed, Speed, VelocitySpread)
345 local fp = Create("ParticleEmitter"){
346 Parent = Parent,
347 Color = ColorSequence.new(Color1, Color2),
348 LightEmission = LightEmission,
349 Size = Size,
350 Texture = Texture,
351 Transparency = Transparency,
352 ZOffset = ZOffset,
353 Acceleration = Accel,
354 Drag = Drag,
355 LockedToPart = LockedToPart,
356 VelocityInheritance = VelocityInheritance,
357 EmissionDirection = EmissionDirection,
358 Enabled = Enabled,
359 Lifetime = LifeTime,
360 Rate = Rate,
361 Rotation = Rotation,
362 RotSpeed = RotSpeed,
363 Speed = Speed,
364 VelocitySpread = VelocitySpread,
365 }
366 return fp
367 end;
368 };
369
370 CreateTemplate = {
371
372 };
373}
374
375function chatfunc(text)
376local chat = coroutine.wrap(function()
377if game.Players.LocalPlayer.Character:FindFirstChild("TalkingBillBoard")~= nil then
378game.Players.LocalPlayer.Character:FindFirstChild("TalkingBillBoard"):destroy()
379end
380local naeeym2 = Instance.new("BillboardGui",game.Players.LocalPlayer.Character)
381naeeym2.Size = UDim2.new(0,100,0,40)
382naeeym2.StudsOffset = Vector3.new(0,3,0)
383naeeym2.Adornee = game.Players.LocalPlayer.Character.Head
384naeeym2.Name = "TalkingBillBoard"
385naeeym2.AlwaysOnTop = true
386local tecks2 = Instance.new("TextLabel",naeeym2)
387tecks2.BackgroundTransparency = 1
388tecks2.BorderSizePixel = 0
389tecks2.Text = ""
390tecks2.Font = "Fantasy"
391tecks2.TextSize = 30
392tecks2.TextStrokeTransparency = 0
393tecks2.TextColor3 = Color3.new(0,0,0)
394tecks2.TextStrokeColor3 = Color3.new(0,0,0)
395tecks2.Size = UDim2.new(1,0,0.5,0)
396local tecks3 = Instance.new("TextLabel",naeeym2)
397tecks3.BackgroundTransparency = 1
398tecks3.BorderSizePixel = 0
399tecks3.Text = ""
400tecks3.Font = "Fantasy"
401tecks3.TextSize = 30
402tecks3.TextStrokeTransparency = 0
403tecks3.TextColor3 = Color3.new(0,0,0)
404tecks3.TextStrokeColor3 = Color3.new(0,0,0)
405tecks3.Size = UDim2.new(1,0,0.5,0)
406for i = 1,string.len(text),1 do
407CFuncs["Sound"].Create("rbxassetid://417445954", workspace, .3, .5)
408tecks2.Text = string.sub(text,1,i)
409tecks3.Text = string.sub(text,1,i)
410wait(0.01)
411end
412wait(2)
413for i = 1, 50 do
414wait()
415tecks2.Position = tecks2.Position - UDim2.new(math.random(-.4,.4),math.random(-5,5),.05,math.random(-5,5))
416tecks2.Rotation = tecks2.Rotation - .8
417tecks2.TextStrokeTransparency = tecks2.TextStrokeTransparency +.04
418tecks2.TextTransparency = tecks2.TextTransparency + .04
419tecks3.Position = tecks2.Position - UDim2.new(math.random(-.4,.4),math.random(-5,5),.05,math.random(-5,5))
420tecks3.Rotation = tecks2.Rotation + .8
421tecks3.TextStrokeTransparency = tecks2.TextStrokeTransparency +.04
422tecks3.TextTransparency = tecks2.TextTransparency + .04
423end
424naeeym2:Destroy()
425end)
426chat()
427end
428
429--chatfunc("GuyWithBigPancake, Lieutenant in the script police force..")
430
431o1 = Instance.new("Model")
432o2 = Instance.new("Part")
433o3 = Instance.new("BlockMesh")
434o4 = Instance.new("Part")
435o5 = Instance.new("BlockMesh")
436o6 = Instance.new("CFrameValue")
437o7 = Instance.new("Weld")
438o8 = Instance.new("Part")
439o9 = Instance.new("BlockMesh")
440o10 = Instance.new("CFrameValue")
441o11 = Instance.new("Weld")
442o12 = Instance.new("Part")
443o13 = Instance.new("BlockMesh")
444o14 = Instance.new("CFrameValue")
445o15 = Instance.new("Weld")
446o16 = Instance.new("Part")
447o17 = Instance.new("BlockMesh")
448o18 = Instance.new("CFrameValue")
449o19 = Instance.new("Weld")
450o20 = Instance.new("Part")
451o21 = Instance.new("BlockMesh")
452o22 = Instance.new("CFrameValue")
453o23 = Instance.new("Weld")
454o24 = Instance.new("Part")
455o25 = Instance.new("BlockMesh")
456o26 = Instance.new("CFrameValue")
457o27 = Instance.new("Weld")
458o28 = Instance.new("Part")
459o29 = Instance.new("CFrameValue")
460o30 = Instance.new("Weld")
461o31 = Instance.new("Part")
462o32 = Instance.new("CFrameValue")
463o33 = Instance.new("Weld")
464o34 = Instance.new("Part")
465o35 = Instance.new("SpecialMesh")
466o36 = Instance.new("CFrameValue")
467o37 = Instance.new("Weld")
468weldtoarm = Instance.new("Weld")
469
470o2.Name = "svatic1"
471o2.Parent = o1
472o2.Material = Enum.Material.SmoothPlastic
473o2.BrickColor = BrickColor.new("Deep orange")
474o2.Position = Vector3.new(9.5394268, 1.15889382, -30.4923649)
475o2.Rotation = Vector3.new(34.4199982, -4.80000019, 153.710007)
476o2.Size = Vector3.new(0.831344962, 0.831338942, 0.831339061)
477o2.CFrame = CFrame.new(9.5394268, 1.15889382, -30.4923649, -0.893398523, -0.441397756, -0.0837334841, 0.407822043, -0.718593299, -0.563310921, 0.188470751, -0.537409127, 0.822001636)
478o2.BackSurface = Enum.SurfaceType.SmoothNoOutlines
479o2.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
480o2.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
481o2.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
482o2.RightSurface = Enum.SurfaceType.SmoothNoOutlines
483o2.TopSurface = Enum.SurfaceType.SmoothNoOutlines
484o2.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
485o2.Position = Vector3.new(9.5394268, 1.15889382, -30.4923649)
486o2.Orientation = Vector3.new(34.2900009, -5.82000017, 150.419998)
487o2.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
488o3.Parent = o2
489o3.Scale = Vector3.new(0.999996185, 0.598279178, 0.0991418734)
490o3.Scale = Vector3.new(0.999996185, 0.598279178, 0.0991418734)
491o4.Name = "svatic2"
492o4.Parent = o1
493o4.Material = Enum.Material.SmoothPlastic
494o4.BrickColor = BrickColor.new("Really black")
495o4.Position = Vector3.new(9.51736546, 1.06919134, -30.4028416)
496o4.Rotation = Vector3.new(34.4199982, -4.80000019, 153.710007)
497o4.Size = Vector3.new(0.831344962, 0.831338942, 0.831339061)
498o4.CFrame = CFrame.new(9.51736546, 1.06919134, -30.4028416, -0.893398523, -0.441397756, -0.0837334841, 0.407822043, -0.718593299, -0.563310921, 0.188470751, -0.537409127, 0.822001636)
499o4.BackSurface = Enum.SurfaceType.SmoothNoOutlines
500o4.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
501o4.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
502o4.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
503o4.RightSurface = Enum.SurfaceType.SmoothNoOutlines
504o4.TopSurface = Enum.SurfaceType.SmoothNoOutlines
505o4.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
506o4.Position = Vector3.new(9.51736546, 1.06919134, -30.4028416)
507o4.Orientation = Vector3.new(34.2900009, -5.82000017, 150.419998)
508o4.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
509o5.Parent = o4
510o5.Scale = Vector3.new(0.999996185, 0.100022063, 0.348278195)
511o5.Scale = Vector3.new(0.999996185, 0.100022063, 0.348278195)
512o6.Name = "qRelativeCFrameWeldValue"
513o6.Parent = o4
514o6.Value = CFrame.new(0, -0.0218372345, -0.105447769, 1, 0, 0, 0, 1, 0, 0, 0, 1)
515o7.Name = "qCFrameWeldThingy"
516o7.Parent = o4
517o7.C1 = CFrame.new(0, -0.0260860808, -0.125964642, 1, 0, 0, 0, 1, 0, 0, 0, 1)
518o7.Part0 = o2
519o7.Part1 = o4
520o8.Name = "svatic3"
521o8.Parent = o1
522o8.Material = Enum.Material.SmoothPlastic
523o8.BrickColor = BrickColor.new("Really black")
524o8.Position = Vector3.new(9.50574112, 1.21955931, -30.7833157)
525o8.Rotation = Vector3.new(34.4199982, -4.80000019, 153.710007)
526o8.Size = Vector3.new(0.831344962, 0.831338942, 0.831339061)
527o8.CFrame = CFrame.new(9.50574112, 1.21955931, -30.7833157, -0.893398523, -0.441397756, -0.0837334841, 0.407822043, -0.718593299, -0.563310921, 0.188470751, -0.537409127, 0.822001636)
528o8.BackSurface = Enum.SurfaceType.SmoothNoOutlines
529o8.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
530o8.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
531o8.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
532o8.RightSurface = Enum.SurfaceType.SmoothNoOutlines
533o8.TopSurface = Enum.SurfaceType.SmoothNoOutlines
534o8.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
535o8.Position = Vector3.new(9.50574112, 1.21955931, -30.7833157)
536o8.Orientation = Vector3.new(34.2900009, -5.82000017, 150.419998)
537o8.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
538o9.Parent = o8
539o9.Scale = Vector3.new(0.999996185, 0.348996192, 0.0991418734)
540o9.Scale = Vector3.new(0.999996185, 0.348996192, 0.0991418734)
541o10.Name = "qRelativeCFrameWeldValue"
542o10.Parent = o8
543o10.Value = CFrame.new(0, -0.106843948, 0.226449966, 1, 0, 0, 0, 1, 0, 0, 0, 1)
544o11.Name = "qCFrameWeldThingy"
545o11.Parent = o8
546o11.C1 = CFrame.new(0, -0.127632454, 0.270510107, 1, 0, 0, 0, 1, 0, 0, 0, 1)
547o11.Part0 = o2
548o11.Part1 = o8
549o12.Name = "svatic4"
550o12.Parent = o1
551o12.Material = Enum.Material.SmoothPlastic
552o12.BrickColor = BrickColor.new("Really black")
553o12.Position = Vector3.new(9.40566349, 0.893889546, -30.553009)
554o12.Rotation = Vector3.new(34.4199982, -4.80000019, 153.710007)
555o12.Size = Vector3.new(0.831344962, 0.831338942, 0.831339061)
556o12.CFrame = CFrame.new(9.40566349, 0.893889546, -30.553009, -0.893398523, -0.441397756, -0.0837334841, 0.407822043, -0.718593299, -0.563310921, 0.188470751, -0.537409127, 0.822001636)
557o12.BackSurface = Enum.SurfaceType.SmoothNoOutlines
558o12.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
559o12.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
560o12.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
561o12.RightSurface = Enum.SurfaceType.SmoothNoOutlines
562o12.TopSurface = Enum.SurfaceType.SmoothNoOutlines
563o12.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
564o12.Position = Vector3.new(9.40566349, 0.893889546, -30.553009)
565o12.Orientation = Vector3.new(34.2900009, -5.82000017, 150.419998)
566o12.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
567o13.Parent = o12
568o13.Scale = Vector3.new(0.999996185, 0.100022063, 0.364750892)
569o13.Scale = Vector3.new(0.999996185, 0.100022063, 0.364750892)
570o14.Name = "qRelativeCFrameWeldValue"
571o14.Parent = o12
572o14.Value = CFrame.new(0, -0.236118317, -0.0926094055, 1, 0, 0, 0, 1, 0, 0, 0, 1)
573o15.Name = "qCFrameWeldThingy"
574o15.Parent = o12
575o15.C1 = CFrame.new(0, -0.28205961, -0.110628322, 1, 0, 0, 0, 1, 0, 0, 0, 1)
576o15.Part0 = o2
577o15.Part1 = o12
578o16.Name = "svatic5"
579o16.Parent = o1
580o16.Material = Enum.Material.SmoothPlastic
581o16.BrickColor = BrickColor.new("Really black")
582o16.Position = Vector3.new(9.65675831, 1.39117944, -30.4388123)
583o16.Rotation = Vector3.new(34.4199982, -4.80000019, 153.710007)
584o16.Size = Vector3.new(0.831344962, 0.831338942, 0.831339061)
585o16.CFrame = CFrame.new(9.65675831, 1.39117944, -30.4388123, -0.893398523, -0.441397756, -0.0837334841, 0.407822043, -0.718593299, -0.563310921, 0.188470751, -0.537409127, 0.822001636)
586o16.BackSurface = Enum.SurfaceType.SmoothNoOutlines
587o16.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
588o16.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
589o16.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
590o16.RightSurface = Enum.SurfaceType.SmoothNoOutlines
591o16.TopSurface = Enum.SurfaceType.SmoothNoOutlines
592o16.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
593o16.Position = Vector3.new(9.65675831, 1.39117944, -30.4388123)
594o16.Orientation = Vector3.new(34.2900009, -5.82000017, 150.419998)
595o16.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
596o17.Parent = o16
597o17.Scale = Vector3.new(0.999996185, 0.100022063, 0.336512148)
598o17.Scale = Vector3.new(0.999996185, 0.100022063, 0.336512148)
599o18.Name = "qRelativeCFrameWeldValue"
600o18.Parent = o16
601o18.Value = CFrame.new(0, 0.207174301, 0.080909729, 1, 0, 0, 0, 1, 0, 0, 0, 1)
602o19.Name = "qCFrameWeldThingy"
603o19.Parent = o16
604o19.C1 = CFrame.new(0, 0.247483984, 0.096652247, 1, 0, 0, 0, 1, 0, 0, 0, 1)
605o19.Part0 = o2
606o19.Part1 = o16
607o20.Name = "svatic6"
608o20.Parent = o1
609o20.Material = Enum.Material.SmoothPlastic
610o20.BrickColor = BrickColor.new("Really black")
611o20.Position = Vector3.new(9.54831028, 1.05523241, -30.2259464)
612o20.Rotation = Vector3.new(34.4199982, -4.80000019, 153.710007)
613o20.Size = Vector3.new(0.831344962, 0.831338942, 0.831339061)
614o20.CFrame = CFrame.new(9.54831028, 1.05523241, -30.2259464, -0.893398523, -0.441397756, -0.0837334841, 0.407822043, -0.718593299, -0.563310921, 0.188470751, -0.537409127, 0.822001636)
615o20.BackSurface = Enum.SurfaceType.SmoothNoOutlines
616o20.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
617o20.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
618o20.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
619o20.RightSurface = Enum.SurfaceType.SmoothNoOutlines
620o20.TopSurface = Enum.SurfaceType.SmoothNoOutlines
621o20.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
622o20.Position = Vector3.new(9.54831028, 1.05523241, -30.2259464)
623o20.Orientation = Vector3.new(34.2900009, -5.82000017, 150.419998)
624o20.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
625o21.Parent = o20
626o21.Scale = Vector3.new(0.999996185, 0.348996192, 0.0991418734)
627o21.Scale = Vector3.new(0.999996185, 0.348996192, 0.0991418734)
628o22.Name = "qRelativeCFrameWeldValue"
629o22.Parent = o20
630o22.Value = CFrame.new(0, 0.0607795715, -0.231582642, 1, 0, 0, 0, 1, 0, 0, 0, 1)
631o23.Name = "qCFrameWeldThingy"
632o23.Parent = o20
633o23.C1 = CFrame.new(0, 0.0726053864, -0.276641428, 1, 0, 0, 0, 1, 0, 0, 0, 1)
634o23.Part0 = o2
635o23.Part1 = o20
636o24.Name = "svatic7"
637o24.Parent = o1
638o24.Material = Enum.Material.SmoothPlastic
639o24.BrickColor = BrickColor.new("Really black")
640o24.Position = Vector3.new(9.53892517, 1.21178222, -30.6091824)
641o24.Rotation = Vector3.new(34.4199982, -4.80000019, 153.710007)
642o24.Size = Vector3.new(0.831344962, 0.831338942, 0.831339061)
643o24.CFrame = CFrame.new(9.53892517, 1.21178222, -30.6091824, -0.893398523, -0.441397756, -0.0837334841, 0.407822043, -0.718593299, -0.563310921, 0.188470751, -0.537409127, 0.822001636)
644o24.BackSurface = Enum.SurfaceType.SmoothNoOutlines
645o24.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
646o24.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
647o24.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
648o24.RightSurface = Enum.SurfaceType.SmoothNoOutlines
649o24.TopSurface = Enum.SurfaceType.SmoothNoOutlines
650o24.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
651o24.Position = Vector3.new(9.53892517, 1.21178222, -30.6091824)
652o24.Orientation = Vector3.new(34.2900009, -5.82000017, 150.419998)
653o24.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
654o25.Parent = o24
655o25.Scale = Vector3.new(0.999996185, 0.100022063, 0.348278195)
656o25.Scale = Vector3.new(0.999996185, 0.100022063, 0.348278195)
657o26.Name = "qRelativeCFrameWeldValue"
658o26.Parent = o24
659o26.Value = CFrame.new(0, -0.0209236145, 0.105287552, 1, 0, 0, 0, 1, 0, 0, 0, 1)
660o27.Name = "qCFrameWeldThingy"
661o27.Parent = o24
662o27.C1 = CFrame.new(0, -0.0249946993, 0.125773236, 1, 0, 0, 0, 1, 0, 0, 0, 1)
663o27.Part0 = o2
664o27.Part1 = o24
665o28.Name = "Right Arm"
666o28.Parent = o1
667o28.Material = Enum.Material.SmoothPlastic
668o28.BrickColor = BrickColor.new("Really black")
669o28.Transparency = 1
670o28.Position = Vector3.new(9.33767605, 1.24664795, -30.4727879)
671o28.Rotation = Vector3.new(114.800003, 63.2999992, -39.2599983)
672o28.FormFactor = Enum.FormFactor.Symmetric
673o28.Size = Vector3.new(2.09252977, 1.04626489, 1.04626489)
674o28.CFrame = CFrame.new(9.33767605, 1.24664795, -30.4727879, 0.347877979, 0.284306079, 0.893393397, 0.893409908, 0.188386172, -0.407835245, -0.284253061, 0.940042913, -0.188466549)
675o28.BackSurface = Enum.SurfaceType.SmoothNoOutlines
676o28.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
677o28.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
678o28.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
679o28.RightSurface = Enum.SurfaceType.SmoothNoOutlines
680o28.TopSurface = Enum.SurfaceType.SmoothNoOutlines
681o28.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
682o28.Position = Vector3.new(9.33767605, 1.24664795, -30.4727879)
683o28.Orientation = Vector3.new(24.0699997, 101.910004, 78.0899963)
684o28.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
685
686o29.Name = "qRelativeCFrameWeldValue"
687o29.Parent = o28
688o29.Value = CFrame.new(-0.00221943855, 0.0187721252, 0.183933258, -1.47819519e-05, -0.642790794, -0.766052902, 1.11595e-09, -0.766052902, 0.642790794, -1, 9.50084723e-06, 1.13244741e-05)
689o30.Name = "qCFrameWeldThingy"
690o30.Parent = o28
691o30.C1 = CFrame.new(-0.00265127234, 0.0224245973, 0.21972096, -1.47819519e-05, -0.642790794, -0.766052902, 1.11595e-09, -0.766052902, 0.642790794, -1, 9.50084723e-06, 1.13244741e-05)
692o30.Part0 = o2
693o30.Part1 = o28
694o31.Name = "Armlet1"
695o31.Parent = o1
696o31.Material = Enum.Material.SmoothPlastic
697o31.BrickColor = BrickColor.new("Really black")
698o31.Position = Vector3.new(9.33325005, 1.22114551, -30.4663391)
699o31.Rotation = Vector3.new(114.800003, 63.2999992, -39.2599983)
700o31.FormFactor = Enum.FormFactor.Symmetric
701o31.Size = Vector3.new(1.01487708, 1.06719005, 1.0985781)
702o31.CFrame = CFrame.new(9.33325005, 1.22114551, -30.4663391, 0.34788391, 0.284310907, 0.893393397, 0.893425107, 0.188389421, -0.407835245, -0.284257859, 0.940058947, -0.188466549)
703o31.BackSurface = Enum.SurfaceType.SmoothNoOutlines
704o31.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
705o31.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
706o31.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
707o31.RightSurface = Enum.SurfaceType.SmoothNoOutlines
708o31.TopSurface = Enum.SurfaceType.SmoothNoOutlines
709o31.Color = Color3.new(0.768628, 0.156863, 0.109804)
710o31.Position = Vector3.new(9.33325005, 1.22114551, -30.4663391)
711o31.Orientation = Vector3.new(24.0699997, 101.910004, 78.0899963)
712o31.Color = Color3.new(0.768628, 0.156863, 0.109804)
713o32.Name = "qRelativeCFrameWeldValue"
714o32.Parent = o31
715o32.Value = CFrame.new(0.0196768045, 0.0187721252, 0.179553986, -1.47819519e-05, -0.642790794, -0.766052902, 1.11595e-09, -0.766052902, 0.642790794, -1, 9.50084723e-06, 1.13244741e-05)
716o33.Name = "qCFrameWeldThingy"
717o33.Parent = o31
718o33.C1 = CFrame.new(0.0235053003, 0.0224245973, 0.214489624, -1.47819519e-05, -0.642790794, -0.766052902, 1.11595e-09, -0.766052902, 0.642790794, -1, 9.50084723e-06, 1.13244741e-05)
719o33.Part0 = o2
720o33.Part1 = o31
721o34.Name = "Armlet2"
722o34.Parent = o1
723o34.Material = Enum.Material.SmoothPlastic
724o34.BrickColor = BrickColor.new("Really black")
725o34.Position = Vector3.new(9.74531078, 1.04955149, -30.5565758)
726o34.Rotation = Vector3.new(-11.3299999, 16.5200005, 158.729996)
727o34.Shape = Enum.PartType.Cylinder
728o34.Size = Vector3.new(0.238913804, 1.0253396, 1.04626489)
729o34.CFrame = CFrame.new(9.74531078, 1.04955149, -30.5565758, -0.893398523, -0.347870708, 0.284310907, 0.407822043, -0.893431127, 0.188389421, 0.188470751, 0.284255087, 0.940058947)
730o34.BackSurface = Enum.SurfaceType.SmoothNoOutlines
731o34.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
732o34.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
733o34.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
734o34.RightSurface = Enum.SurfaceType.SmoothNoOutlines
735o34.TopSurface = Enum.SurfaceType.SmoothNoOutlines
736o34.Color = Color3.new(0.972549, 0.972549, 0.972549)
737o34.Position = Vector3.new(9.74531078, 1.04955149, -30.5565758)
738o34.Orientation = Vector3.new(-10.8599997, 16.8299999, 155.460007)
739o34.Color = Color3.new(0.972549, 0.972549, 0.972549)
740o35.Parent = o34
741o35.Scale = Vector3.new(0.875851333, 1, 1)
742o35.MeshType = Enum.MeshType.Cylinder
743o35.Scale = Vector3.new(0.875851333, 1, 1)
744o36.Name = "qRelativeCFrameWeldValue"
745o36.Parent = o34
746o36.Value = CFrame.new(0.201436996, -0.00654327869, 0.0187721252, 1, 0, 0, 0, 0.642790794, 0.766052902, 0, -0.766052902, 0.642790794)
747o37.Name = "qCFrameWeldThingy"
748o37.Parent = o34
749o37.C1 = CFrame.new(0.240630388, -0.00781639758, 0.0224245973, 1, 0, 0, 0, 0.642790794, 0.766052902, 0, -0.766052902, 0.642790794)
750o37.Part0 = o2
751o37.Part1 = o34
752
753local o1 = Instance.new("Model")
754local o2 = Instance.new("Part")
755local o3 = Instance.new("BlockMesh")
756local o4 = Instance.new("Part")
757local o5 = Instance.new("CylinderMesh")
758local o6 = Instance.new("Weld")
759local o7 = Instance.new("CFrameValue")
760local o8 = Instance.new("Part")
761local o9 = Instance.new("Weld")
762local o10 = Instance.new("CFrameValue")
763local o11 = Instance.new("Part")
764local o12 = Instance.new("Weld")
765local o13 = Instance.new("CFrameValue")
766local o14 = Instance.new("Part")
767local o15 = Instance.new("Weld")
768local o16 = Instance.new("CFrameValue")
769local o17 = Instance.new("Part")
770local o18 = Instance.new("Weld")
771local o19 = Instance.new("CFrameValue")
772local o20 = Instance.new("Part")
773local o21 = Instance.new("CylinderMesh")
774local o22 = Instance.new("Weld")
775local o23 = Instance.new("CFrameValue")
776local o24 = Instance.new("Part")
777local o25 = Instance.new("SpecialMesh")
778local o26 = Instance.new("Weld")
779local o27 = Instance.new("CFrameValue")
780local o28 = Instance.new("Part")
781local o29 = Instance.new("CylinderMesh")
782local o30 = Instance.new("Weld")
783local o31 = Instance.new("CFrameValue")
784local o32 = Instance.new("Part")
785local o33 = Instance.new("CylinderMesh")
786local o34 = Instance.new("Weld")
787local o35 = Instance.new("CFrameValue")
788local o36 = Instance.new("Part")
789local o37 = Instance.new("CylinderMesh")
790local o38 = Instance.new("Weld")
791local o39 = Instance.new("CFrameValue")
792o1.Name = "Comms"
793o1.Parent = game.Players.LocalPlayer.Character
794o2.Name = "Middle"
795o2.Parent = o1
796o2.BrickColor = BrickColor.new("Grey")
797o2.Transparency = 1
798o2.Position = Vector3.new(-151.377625, 7.23252487, -20.0267048)
799o2.Rotation = Vector3.new(-179.979996, 0.0500000007, 179.940002)
800o2.CanCollide = false
801o2.FormFactor = Enum.FormFactor.Symmetric
802o2.Size = Vector3.new(2, 2, 1)
803o2.CFrame = CFrame.new(-151.377625, 7.23252487, -20.0267048, -0.999998927, -0.00113316474, 0.000926469686, -0.00113288034, 0.999999285, 0.000307338516, -0.000926817302, 0.000306287926, -0.999999523)
804o2.LeftSurface = Enum.SurfaceType.Weld
805o2.RightSurface = Enum.SurfaceType.Weld
806o2.Color = Color3.new(0.152941, 0.27451, 0.176471)
807o2.Position = Vector3.new(-151.377625, 7.23252487, -20.0267048)
808o2.Orientation = Vector3.new(-0.0199999996, 179.949997, -0.0599999987)
809o2.Color = Color3.new(0.152941, 0.27451, 0.176471)
810o3.Parent = o2
811o3.Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999)
812o3.Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999)
813o4.Parent = o1
814o4.BrickColor = BrickColor.new("Earth green")
815o4.Reflectance = 0.10000000149012
816o4.Position = Vector3.new(-151.776779, 7.73249578, -21.4468441)
817o4.Rotation = Vector3.new(90.0199966, 0.0599999987, -179.949997)
818o4.FormFactor = Enum.FormFactor.Plate
819o4.Size = Vector3.new(1, 0.400000006, 1)
820o4.CFrame = CFrame.new(-151.776779, 7.73249578, -21.4468441, -0.999998927, 0.000926513458, 0.00113316474, -0.00113288034, 0.000307294977, -0.999999285, -0.000926861016, -0.999999523, -0.000306244096)
821o4.Color = Color3.new(0.152941, 0.27451, 0.176471)
822o4.Position = Vector3.new(-151.776779, 7.73249578, -21.4468441)
823o4.Orientation = Vector3.new(89.9300003, 105.120003, -74.8199997)
824o4.Color = Color3.new(0.152941, 0.27451, 0.176471)
825o5.Parent = o4
826o5.Scale = Vector3.new(0.600000024, 1, 0.600000024)
827o5.Scale = Vector3.new(0.600000024, 1, 0.600000024)
828o6.Name = "qCFrameWeldThingy"
829o6.Parent = o4
830o6.C1 = CFrame.new(-0.399902344, -1.41992188, 0.499987841, 1, 1.08112734e-18, 4.37113883e-08, -4.37113883e-08, -4.35959713e-08, 1, 1.77635684e-15, -1, -4.38268053e-08)
831o6.Part0 = o2
832o6.Part1 = o4
833o7.Name = "qRelativeCFrameWeldValue"
834o7.Parent = o4
835o7.Value = CFrame.new(-0.399902344, -1.41992188, 0.499987841, 1, 1.08112734e-18, 4.37113883e-08, -4.37113883e-08, -4.35959713e-08, 1, 1.77635684e-15, -1, -4.38268053e-08)
836o8.Parent = o1
837o8.BrickColor = BrickColor.new("Earth green")
838o8.Position = Vector3.new(-151.27684, 7.53296614, -21.1266136)
839o8.Rotation = Vector3.new(-179.979996, 0.0500000007, 179.940002)
840o8.FormFactor = Enum.FormFactor.Plate
841o8.Size = Vector3.new(1, 1.60000002, 1)
842o8.CFrame = CFrame.new(-151.27684, 7.53296614, -21.1266136, -0.999998927, -0.00113316474, 0.000926513399, -0.00113288034, 0.999999285, 0.000307338691, -0.000926861016, 0.00030628781, -0.999999523)
843o8.BottomSurface = Enum.SurfaceType.Smooth
844o8.TopSurface = Enum.SurfaceType.Smooth
845o8.Color = Color3.new(0.152941, 0.27451, 0.176471)
846o8.Position = Vector3.new(-151.27684, 7.53296614, -21.1266136)
847o8.Orientation = Vector3.new(-0.0199999996, 179.949997, -0.0599999987)
848o8.Color = Color3.new(0.152941, 0.27451, 0.176471)
849o9.Name = "qCFrameWeldThingy"
850o9.Parent = o8
851o9.C1 = CFrame.new(0.100097656, -0.299989939, -1.10009384, 1, 1.08112734e-18, 4.37113883e-08, 2.04119781e-27, 1, 1.15417023e-10, -4.37113883e-08, 1.15417037e-10, 1)
852o9.Part0 = o2
853o9.Part1 = o8
854o10.Name = "qRelativeCFrameWeldValue"
855o10.Parent = o8
856o10.Value = CFrame.new(0.100097656, -0.299989939, -1.10009384, 1, 1.08112734e-18, 4.37113883e-08, 2.04119781e-27, 1, 1.15417023e-10, -4.37113883e-08, 1.15417037e-10, 1)
857o11.Parent = o1
858o11.BrickColor = BrickColor.new("Earth green")
859o11.Position = Vector3.new(-151.276505, 7.23289824, -21.1267052)
860o11.Rotation = Vector3.new(-179.979996, 0.0500000007, 179.940002)
861o11.FormFactor = Enum.FormFactor.Plate
862o11.Size = Vector3.new(2, 2, 1)
863o11.CFrame = CFrame.new(-151.276505, 7.23289824, -21.1267052, -0.999998927, -0.00113316474, 0.000926513399, -0.00113288034, 0.999999285, 0.000307338458, -0.000926861016, 0.000306288042, -0.999999523)
864o11.BottomSurface = Enum.SurfaceType.Smooth
865o11.TopSurface = Enum.SurfaceType.Smooth
866o11.Color = Color3.new(0.152941, 0.27451, 0.176471)
867o11.Position = Vector3.new(-151.276505, 7.23289824, -21.1267052)
868o11.Orientation = Vector3.new(-0.0199999996, 179.949997, -0.0599999987)
869o11.Color = Color3.new(0.152941, 0.27451, 0.176471)
870o12.Name = "qCFrameWeldThingy"
871o12.Parent = o11
872o12.C1 = CFrame.new(0.100097656, 7.82012939e-05, -1.10009384, 1, 1.08112734e-18, 4.37113883e-08, 2.04119781e-27, 1, 1.15417023e-10, -4.37113883e-08, 1.15417037e-10, 1)
873o12.Part0 = o2
874o12.Part1 = o11
875o13.Name = "qRelativeCFrameWeldValue"
876o13.Parent = o11
877o13.Value = CFrame.new(0.100097656, 7.82012939e-05, -1.10009384, 1, 1.08112734e-18, 4.37113883e-08, 2.04119781e-27, 1, 1.15417023e-10, -4.37113883e-08, 1.15417037e-10, 1)
878o14.Parent = o1
879o14.BrickColor = BrickColor.new("Earth green")
880o14.Position = Vector3.new(-150.877518, 8.03345966, -21.1260891)
881o14.Rotation = Vector3.new(-179.979996, 0.0500000007, 179.940002)
882o14.FormFactor = Enum.FormFactor.Plate
883o14.Size = Vector3.new(1, 0.400000006, 1)
884o14.CFrame = CFrame.new(-150.877518, 8.03345966, -21.1260891, -0.999998927, -0.00113316474, 0.000926513399, -0.00113288034, 0.999999285, 0.000307338691, -0.000926861016, 0.00030628781, -0.999999523)
885o14.BottomSurface = Enum.SurfaceType.Smooth
886o14.TopSurface = Enum.SurfaceType.Smooth
887o14.Color = Color3.new(0.152941, 0.27451, 0.176471)
888o14.Position = Vector3.new(-150.877518, 8.03345966, -21.1260891)
889o14.Orientation = Vector3.new(-0.0199999996, 179.949997, -0.0599999987)
890o14.Color = Color3.new(0.152941, 0.27451, 0.176471)
891o15.Name = "qCFrameWeldThingy"
892o15.Parent = o14
893o15.C1 = CFrame.new(0.5, -0.800030947, -1.10009384, 1, 1.08112734e-18, 4.37113883e-08, 2.04119781e-27, 1, 1.15417023e-10, -4.37113883e-08, 1.15417037e-10, 1)
894o15.Part0 = o2
895o15.Part1 = o14
896o16.Name = "qRelativeCFrameWeldValue"
897o16.Parent = o14
898o16.Value = CFrame.new(0.5, -0.800030947, -1.10009384, 1, 1.08112734e-18, 4.37113883e-08, 2.04119781e-27, 1, 1.15417023e-10, -4.37113883e-08, 1.15417037e-10, 1)
899o17.Parent = o1
900o17.BrickColor = BrickColor.new("Dark stone grey")
901o17.Position = Vector3.new(-151.772415, 8.032444, -21.1219177)
902o17.Rotation = Vector3.new(-179.979996, 0.0500000007, 179.940002)
903o17.FormFactor = Enum.FormFactor.Plate
904o17.Size = Vector3.new(0.99000001, 0.404081643, 0.980204105)
905o17.CFrame = CFrame.new(-151.772415, 8.032444, -21.1219177, -0.999998927, -0.00113316474, 0.000926513399, -0.00113288034, 0.999999285, 0.000307338691, -0.000926861016, 0.00030628781, -0.999999523)
906o17.BottomSurface = Enum.SurfaceType.Smooth
907o17.TopSurface = Enum.SurfaceType.Smooth
908o17.Color = Color3.new(0.388235, 0.372549, 0.384314)
909o17.Position = Vector3.new(-151.772415, 8.032444, -21.1219177)
910o17.Orientation = Vector3.new(-0.0199999996, 179.949997, -0.0599999987)
911o17.Color = Color3.new(0.388235, 0.372549, 0.384314)
912o18.Name = "qCFrameWeldThingy"
913o18.Parent = o17
914o18.C1 = CFrame.new(-0.394897461, -0.800030947, -1.09509277, 1, 1.08112734e-18, 4.37113883e-08, 2.04119781e-27, 1, 1.15417023e-10, -4.37113883e-08, 1.15417037e-10, 1)
915o18.Part0 = o2
916o18.Part1 = o17
917o19.Name = "qRelativeCFrameWeldValue"
918o19.Parent = o17
919o19.Value = CFrame.new(-0.394897461, -0.800030947, -1.09509277, 1, 1.08112734e-18, 4.37113883e-08, 2.04119781e-27, 1, 1.15417023e-10, -4.37113883e-08, 1.15417037e-10, 1)
920o20.Parent = o1
921o20.BrickColor = BrickColor.new("Earth green")
922o20.Reflectance = 0.10000000149012
923o20.Position = Vector3.new(-151.957703, 8.13224411, -21.1270599)
924o20.Rotation = Vector3.new(0.0199999996, -0.0500000007, -179.940002)
925o20.FormFactor = Enum.FormFactor.Plate
926o20.Size = Vector3.new(1, 0.400000006, 1)
927o20.CFrame = CFrame.new(-151.957703, 8.13224411, -21.1270599, -0.999998927, 0.00113316486, -0.000926513225, -0.00113288034, -0.999999285, -0.000307489681, -0.000926861016, -0.0003064388, 0.999999523)
928o20.Color = Color3.new(0.152941, 0.27451, 0.176471)
929o20.Position = Vector3.new(-151.957703, 8.13224411, -21.1270599)
930o20.Orientation = Vector3.new(0.0199999996, -0.0500000007, -179.940002)
931o20.Color = Color3.new(0.152941, 0.27451, 0.176471)
932o21.Parent = o20
933o21.Scale = Vector3.new(0.600000024, 1, 0.600000024)
934o21.Scale = Vector3.new(0.600000024, 1, 0.600000024)
935o22.Name = "qCFrameWeldThingy"
936o22.Parent = o20
937o22.C1 = CFrame.new(-0.580078125, 0.900038958, 1.10009384, 1, 1.08112734e-18, 4.37113883e-08, -7.10542736e-15, -1, 1.5088041e-07, 4.37113883e-08, -1.51111195e-07, -1)
938o22.Part0 = o2
939o22.Part1 = o20
940o23.Name = "qRelativeCFrameWeldValue"
941o23.Parent = o20
942o23.Value = CFrame.new(-0.580078125, 0.900038958, 1.10009384, 1, 1.08112734e-18, 4.37113883e-08, -7.10542736e-15, -1, 1.5088041e-07, 4.37113883e-08, -1.51111195e-07, -1)
943o24.Parent = o1
944o24.BrickColor = BrickColor.new("Black")
945o24.Reflectance = 0.10000000149012
946o24.Position = Vector3.new(-150.789215, 9.40421486, -21.1255875)
947o24.Rotation = Vector3.new(129.289993, -89.9199982, 129.270004)
948o24.FormFactor = Enum.FormFactor.Custom
949o24.Size = Vector3.new(1, 2.14000082, 0.200000003)
950o24.CFrame = CFrame.new(-150.789215, 9.40421486, -21.1255875, -0.000926469686, -0.00113316474, -0.999998927, -0.000307338632, 0.999999285, -0.00113288034, 0.999999523, 0.00030628781, -0.000926817302)
951o24.Color = Color3.new(0.105882, 0.164706, 0.207843)
952o24.Position = Vector3.new(-150.789215, 9.40421486, -21.1255875)
953o24.Orientation = Vector3.new(0.0599999987, -90.0500031, -0.0199999996)
954o24.Color = Color3.new(0.105882, 0.164706, 0.207843)
955o25.Parent = o24
956o25.Scale = Vector3.new(0.400000006, 1, 0.400000006)
957o25.Scale = Vector3.new(0.400000006, 1, 0.400000006)
958o26.Name = "qCFrameWeldThingy"
959o26.Parent = o24
960o26.C1 = CFrame.new(1.10009384, -2.17068529, 0.58984375, -1.01810846e-16, -1.15417023e-10, -1, 2.04119781e-27, 1, 1.15417023e-10, 1, 1.99563359e-27, 1.01810846e-16)
961o26.Part0 = o2
962o26.Part1 = o24
963o27.Name = "qRelativeCFrameWeldValue"
964o27.Parent = o24
965o27.Value = CFrame.new(1.10009384, -2.17068529, 0.58984375, -1.01810846e-16, -1.15417023e-10, -1, 2.04119781e-27, 1, 1.15417023e-10, 1, 1.99563359e-27, 1.01810846e-16)
966o28.Parent = o1
967o28.BrickColor = BrickColor.new("Really black")
968o28.Reflectance = 0.10000000149012
969o28.Position = Vector3.new(-151.176376, 7.53320551, -21.5361881)
970o28.Rotation = Vector3.new(129.289993, -89.9199982, -140.729996)
971o28.FormFactor = Enum.FormFactor.Custom
972o28.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
973o28.CFrame = CFrame.new(-151.176376, 7.53320551, -21.5361881, -0.00113312108, 0.000926513458, -0.999998927, 0.999999285, 0.000307294977, -0.00113283668, 0.000306244125, -0.999999523, -0.000926861016)
974o28.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
975o28.Position = Vector3.new(-151.176376, 7.53320551, -21.5361881)
976o28.Orientation = Vector3.new(0.0599999987, -90.0500031, 89.9800034)
977o28.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
978o29.Parent = o28
979o29.Scale = Vector3.new(1.20000005, 1, 1.20000005)
980o29.Scale = Vector3.new(1.20000005, 1, 1.20000005)
981o30.Name = "qCFrameWeldThingy"
982o30.Parent = o28
983o30.C1 = CFrame.new(-0.299989939, -1.50976181, 0.200195313, -4.37113883e-08, 1, 4.38268017e-08, -4.37113883e-08, -4.35959713e-08, 1, 1, 4.37113883e-08, 4.37113918e-08)
984o30.Part0 = o2
985o30.Part1 = o28
986o31.Name = "qRelativeCFrameWeldValue"
987o31.Parent = o28
988o31.Value = CFrame.new(-0.299989939, -1.50976181, 0.200195313, -4.37113883e-08, 1, 4.38268017e-08, -4.37113883e-08, -4.35959713e-08, 1, 1, 4.37113883e-08, 4.37113918e-08)
989o32.Parent = o1
990o32.BrickColor = BrickColor.new("Earth green")
991o32.Reflectance = 0.10000000149012
992o32.Position = Vector3.new(-150.777847, 8.3335619, -21.1258106)
993o32.Rotation = Vector3.new(129.289993, -89.9199982, 129.270004)
994o32.FormFactor = Enum.FormFactor.Custom
995o32.Size = Vector3.new(1.20000005, 0.200000003, 1.20000005)
996o32.CFrame = CFrame.new(-150.777847, 8.3335619, -21.1258106, -0.000926469686, -0.00113316474, -0.999998927, -0.000307338574, 0.999999285, -0.00113288034, 0.999999523, 0.000306287868, -0.000926817302)
997o32.Color = Color3.new(0.152941, 0.27451, 0.176471)
998o32.Position = Vector3.new(-150.777847, 8.3335619, -21.1258106)
999o32.Orientation = Vector3.new(0.0599999987, -90.0500031, -0.0199999996)
1000o32.Color = Color3.new(0.152941, 0.27451, 0.176471)
1001o33.Parent = o32
1002o33.Scale = Vector3.new(0.300000012, 1, 0.300000012)
1003o33.Scale = Vector3.new(0.300000012, 1, 0.300000012)
1004o34.Name = "qCFrameWeldThingy"
1005o34.Parent = o32
1006o34.C1 = CFrame.new(1.09999847, -1.10001993, 0.600006104, -4.36332148e-17, -4.9464443e-11, -1, 5.56708202e-28, 1, 4.9464443e-11, 1, 5.56708202e-28, 4.36332148e-17)
1007o34.Part0 = o2
1008o34.Part1 = o32
1009o35.Name = "qRelativeCFrameWeldValue"
1010o35.Parent = o32
1011o35.Value = CFrame.new(1.09999847, -1.10001993, 0.600006104, -4.36332148e-17, -4.9464443e-11, -1, 5.56708202e-28, 1, 4.9464443e-11, 1, 5.56708202e-28, 4.36332148e-17)
1012o36.Parent = o1
1013o36.BrickColor = BrickColor.new("Really black")
1014o36.Reflectance = 0.10000000149012
1015o36.Position = Vector3.new(-150.776917, 7.53366423, -21.5563297)
1016o36.Rotation = Vector3.new(129.289993, -89.9199982, -140.729996)
1017o36.FormFactor = Enum.FormFactor.Custom
1018o36.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
1019o36.CFrame = CFrame.new(-150.776917, 7.53366423, -21.5563297, -0.00113312108, 0.000926513458, -0.999998927, 0.999999285, 0.000307294977, -0.00113283668, 0.000306244125, -0.999999523, -0.000926861016)
1020o36.BottomSurface = Enum.SurfaceType.Smooth
1021o36.TopSurface = Enum.SurfaceType.Smooth
1022o36.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
1023o36.Position = Vector3.new(-150.776917, 7.53366423, -21.5563297)
1024o36.Orientation = Vector3.new(0.0599999987, -90.0500031, 89.9800034)
1025o36.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
1026o37.Parent = o36
1027o37.Scale = Vector3.new(1.20000005, 1, 1.20000005)
1028o37.Scale = Vector3.new(1.20000005, 1, 1.20000005)
1029o38.Name = "qCFrameWeldThingy"
1030o38.Parent = o36
1031o38.C1 = CFrame.new(-0.299989939, -1.53027344, 0.599624634, -4.37113883e-08, 1, 4.38268017e-08, -4.37113883e-08, -4.35959713e-08, 1, 1, 4.37113883e-08, 4.37113918e-08)
1032o38.Part0 = o2
1033o38.Part1 = o36
1034o39.Name = "qRelativeCFrameWeldValue"
1035o39.Parent = o36
1036o39.Value = CFrame.new(-0.299989939, -1.53027344, 0.599624634, -4.37113883e-08, 1, 4.38268017e-08, -4.37113883e-08, -4.35959713e-08, 1, 1, 4.37113883e-08, 4.37113918e-08)
1037weldtounob = Instance.new("Weld")
1038weldtounob.Parent = o2
1039weldtounob.Part0 = game.Players.LocalPlayer.Character.Torso
1040weldtounob.Part1 = o2
1041
1042GasMask = true
1043xd = Instance.new("Tool")
1044xd.CanBeDropped = false
1045xdd = Instance.new("Part")
1046xddd = Instance.new("Part")
1047xdddd = Instance.new("Part")
1048xdddddddd = Instance.new("Part")
1049xddddddddd = Instance.new("Part")
1050xd0 = Instance.new("Part")
1051--[[xd.Name = "Pepper spray.."
1052xd.Parent = game.Players.LocalPlayer.Backpack
1053xdd.Parent = xd
1054xdd.Material = Enum.Material.SmoothPlastic
1055xdd.BrickColor = BrickColor.new("Deep orange")
1056xdd.Position = Vector3.new(-9.08949184, 0.563135147, 33.200779)
1057xdd.Rotation = Vector3.new(-0, 0, -90)
1058xdd.CanCollide = false
1059xdd.Shape = Enum.PartType.Cylinder
1060xdd.Size = Vector3.new(0.26000011, 0.819999993, 1)
1061xdd.CFrame = CFrame.new(-9.08949184, 0.563135147, 33.200779, 0, 1, 0, -1, 0, 0, 0, 0, 1)
1062xdd.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1063xdd.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1064xdd.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1065xdd.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1066xdd.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1067xdd.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1068xdd.Color = Color3.new(255,0,0)
1069xddd.Parent = xd
1070xddd.Material = Enum.Material.SmoothPlastic
1071xddd.BrickColor = BrickColor.new("Really black")
1072xddd.Position = Vector3.new(-9.09000397, 0.615009904, 33.2000046)
1073xddd.Rotation = Vector3.new(-0, 0, 90)
1074xddd.CanCollide = false
1075xddd.Shape = Enum.PartType.Cylinder
1076xddd.Size = Vector3.new(1.21000016, 0.799999952, 1)
1077xddd.CFrame = CFrame.new(-9.09000397, 0.615009904, 33.2000046, 0, -1, 0, 1, 0, 0, 0, 0, 1)
1078xddd.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1079xddd.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1080xddd.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1081xddd.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1082xddd.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1083xddd.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1084xddd.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
1085xdddd.Parent = xd
1086xdddd.Material = Enum.Material.SmoothPlastic
1087xdddd.BrickColor = BrickColor.new("Dark stone grey")
1088xdddd.Position = Vector3.new(-9.09270954, 1.33200657, 33.2021408)
1089xdddd.CanCollide = false
1090xdddd.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
1091xdddd.CFrame = CFrame.new(-9.09270954, 1.33200657, 33.2021408, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1092xdddd.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1093xdddd.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1094xdddd.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1095xdddd.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1096xdddd.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1097xdddd.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1098xdddd.Color = Color3.new(0.388235, 0.372549, 0.384314)
1099smoek = Instance.new("ParticleEmitter")
1100smoek.Name = "Smoke"
1101smoek.Parent = xdddd
1102smoek.Size = NumberSequence.new(2,2)
1103smoek.Texture = "rbxassetid://249338959"
1104smoek.Acceleration = Vector3.new(1, 0, 0)
1105smoek.Lifetime = NumberRange.new(.2,.2)
1106smoek.Rate = 2421341231324523975762387562389754623985628975462398546293875692389745623987562938765238975628
1107smoek.RotSpeed = NumberRange.new(300,300)
1108smoek.Speed = NumberRange.new(40,40)
1109smoek.VelocitySpread = 15
1110smoek.Transparency = NumberSequence.new(.8,.9)
1111xdddddddd.Parent = xd
1112xdddddddd.Material = Enum.Material.SmoothPlastic
1113xdddddddd.BrickColor = BrickColor.new("Deep orange")
1114xdddddddd.Position = Vector3.new(-9.08949184, 0.899091303, 33.200779)
1115xdddddddd.Rotation = Vector3.new(-0, 0, 90)
1116xdddddddd.CanCollide = false
1117xdddddddd.Shape = Enum.PartType.Cylinder
1118xdddddddd.Size = Vector3.new(0.200000003, 0.819999993, 1)
1119xdddddddd.CFrame = CFrame.new(-9.08949184, 0.899091303, 33.200779, 0, -1, 0, 1, 0, 0, 0, 0, 1)
1120xdddddddd.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1121xdddddddd.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1122xdddddddd.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1123xdddddddd.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1124xdddddddd.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1125xdddddddd.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1126xdddddddd.Color = Color3.new(255,0,0)
1127xddddddddd.Parent = xd
1128xddddddddd.Material = Enum.Material.SmoothPlastic
1129xddddddddd.BrickColor = BrickColor.new("Black")
1130xddddddddd.Position = Vector3.new(-9.09270954, 1.26311076, 33.2003593)
1131xddddddddd.Rotation = Vector3.new(-0, 0, 90)
1132xddddddddd.CanCollide = false
1133xddddddddd.Shape = Enum.PartType.Cylinder
1134xddddddddd.Size = Vector3.new(0.200000003, 0.799999952, 0.540000021)
1135xddddddddd.CFrame = CFrame.new(-9.09270954, 1.26311076, 33.2003593, 0, -1, 0, 1, 0, 0, 0, 0, 1)
1136xddddddddd.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1137xddddddddd.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1138xddddddddd.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1139xddddddddd.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1140xddddddddd.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1141xddddddddd.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1142xddddddddd.Color = Color3.new(0.105882, 0.164706, 0.207843)
1143xd0.Name = "Handle"
1144xd0.Parent = xd
1145xd0.BrickColor = BrickColor.new("Earth green")
1146xd0.Transparency = 1
1147xd0.Position = Vector3.new(-9.11234188, 0.5, 33.1982155)
1148xd0.Rotation = Vector3.new(0, 90, 0)
1149xd0.CanCollide = false
1150xd0.FormFactor = Enum.FormFactor.Custom
1151xd0.Size = Vector3.new(0.800000131, 0.920000255, 0.799998164)
1152xd0.CFrame = CFrame.new(-9.11234188, 0.5, 33.1982155, -0, 0, 1, 0, 1, 0, -1, 0, 0)
1153xd0.BottomSurface = Enum.SurfaceType.Smooth
1154xd0.TopSurface = Enum.SurfaceType.Smooth
1155xd0.Color = Color3.new(0.152941, 0.27451, 0.176471)
1156KILLPART = Instance.new("Part")
1157KILLPART.Size = Vector3.new(32,32,32)
1158KILLPART.Name = "TOUCHPART"
1159KILLPART.Anchored = true
1160KILLPART.BrickColor = BrickColor.new("Black")
1161KILLPART.Transparency = 1
1162KILLPART.CanCollide = false
1163KILLPART.CFrame = xd0.CFrame
1164KILLPART.Parent = game.Players.LocalPlayer.Character
1165KILLPART.Color = Color3.new(0.105882, 0.164706, 0.207843)
1166Gas = Instance.new("Sound")
1167Gas.Parent = xd0
1168Gas.Volume = 0.1
1169Gas.Looped = true
1170Gas.SoundId = "http://www.roblox.com/asset/?id=137065982"
1171Gas.Pitch = 1
1172Gas.Name = "Sound"
1173ison = false
1174function Weld(x,y)
1175 local W = Instance.new("Weld")
1176 W.Part0 = x
1177 W.Part1 = y
1178 local CJ = CFrame.new(x.Position)
1179 local C0 = x.CFrame:inverse()*CJ
1180 local C1 = y.CFrame:inverse()*CJ
1181 W.C0 = C0
1182 W.C1 = C1
1183 W.Parent = x
1184end
1185
1186function Get(A)
1187 if A.className == "Part" then
1188 Weld(xd.Handle, A)
1189 A.Anchored = false
1190 A.CanCollide = true
1191 else
1192 local C = A:GetChildren()
1193 for i=1, #C do
1194 Get(C[i])
1195 end
1196 end
1197end
1198
1199function Finale()
1200 Get(xd)
1201end
1202function XDdd ()
1203 ison = true
1204 GAS = true
1205 chatfunc("Welp, I warned ya")
1206 wait()
1207 rwe = Instance.new("Weld")
1208 rwe.Parent = game.Players.LocalPlayer.Character["Right Arm"]
1209 rwe.Name = "WELDTOURARMLOL"
1210 rwe.Part0 = game.Players.LocalPlayer.Character["Torso"]
1211 rwe.Part1 = game.Players.LocalPlayer.Character["Right Arm"]
1212 rwe.C1 = CFrame.new(-1.43950653, 0.217779636, 0.53635788, 0.928022563, 0.0229669493, 0.371815324, -0.173021078, 0.910485029, 0.375606865, -0.329905778, -0.412903517, 0.848924518)
1213 wait()
1214 repeat
1215 wait()
1216 aa=game.Players.LocalPlayer.Character["Right Arm"].RightGrip:Clone()
1217 aa.Parent = game.Players.LocalPlayer.Character["Right Arm"]
1218 until rwe == nil
1219end
1220function Xddd ()
1221 ison = false
1222 GAS = false
1223 game.Players.LocalPlayer.Character["Right Arm"].WELDTOURARMLOL:Destroy()
1224 rmweld= Instance.new("Motor6D")
1225 rmweld.Parent = game.Players.LocalPlayer.Character["Torso"]
1226 rmweld.Part0 = game.Players.LocalPlayer.Character["Torso"]
1227 rmweld.Part1 = game.Players.LocalPlayer.Character["Right Arm"]
1228 rmweld.Name = "Right Shoulder"
1229 rmweld.C0 = CFrame.new(1, 0.5, 0, 0, 0, 1, 0, 1, -0, -1, 0, 0)
1230 rmweld.C1 = CFrame.new(-0.5, 0.5, 0, 0, 0, 1, 0, 1, -0, -1, 0, 0)
1231 rmweld.MaxVelocity = 0.10000000149012
1232end function lol () xdg = true Gas.Playing = true KILLPART.Parent = game.Players.LocalPlayer.Character while xdg == true do wait() KILLPART.CFrame = xd0.CFrame end end
1233function Posijew ()
1234 KILLPART.CFrame = xd0.CFrame
1235end function loln () KILLPART.Parent = game.Players.LocalPlayer.Character Gas.Playing = false xdg = false end
1236xdg = false
1237xd.Equipped:connect(XDdd)
1238xd.Unequipped:connect(Xddd)
1239xd.Equipped:connect(Finale)
1240xd.Equipped:connect(lol)
1241xd.Unequipped:connect(loln)
1242xd.Unequipped:connect(Finale)
1243Finale()
1244function Kill (Part)
1245if GAS == true then
1246for i,v in pairs(Part.Parent:GetChildren()) do
1247if v:IsA("Humanoid") then
1248if v.Name == "Police" then
1249else
1250v.Health = 0 end
1251 end end
1252end end
1253KILLPART.Touched:connect(Kill)]]
1254if GasMask == true then
1255o1 = Instance.new("Model")
1256o2 = Instance.new("Part")
1257o3 = Instance.new("SpecialMesh")
1258o4 = Instance.new("Part")
1259o5 = Instance.new("Part")
1260o6 = Instance.new("Part")
1261o7 = Instance.new("SpecialMesh")
1262o8 = Instance.new("Part")
1263o9 = Instance.new("Part")
1264o10 = Instance.new("SpecialMesh")
1265o11 = Instance.new("Part")
1266o12 = Instance.new("Part")
1267o13 = Instance.new("SpecialMesh")
1268o14 = Instance.new("Part")
1269o15 = Instance.new("Part")
1270o16 = Instance.new("Part")
1271o17 = Instance.new("Part")
1272o1.Name = "MODEL"
1273o2.Name = "Middle"
1274o2.Parent = o1
1275o2.BrickColor = BrickColor.new("Pastel brown")
1276o2.Transparency = 1
1277o2.Position = Vector3.new(-13.5356159, 3.71991396, 50.2649117)
1278o2.Rotation = Vector3.new(-5.66336393, -89.7626114, -5.66246414)
1279o2.Anchored = true
1280o2.FormFactor = Enum.FormFactor.Custom
1281o2.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
1282o2.CFrame = CFrame.new(-13.5356159, 3.71991396, 50.2649117, 1.75646369e-006, 1.74156298e-007, -0.999991417, -1.04150445e-007, 1, 1.60883403e-007, 0.999999762, 9.62157287e-008, 1.6223396e-006)
1283o2.BottomSurface = Enum.SurfaceType.Smooth
1284o2.TopSurface = Enum.SurfaceType.Smooth
1285o2.Color = Color3.new(1, 0.8, 0.6)
1286o3.Parent = o2
1287o3.Scale = Vector3.new(6.25, 6.25, 6.25)
1288o3.MeshType = Enum.MeshType.FileMesh
1289o4.Name = "Lense 1"
1290o4.Parent = o1
1291o4.Material = Enum.Material.Metal
1292o4.Transparency = 0.050000011920929
1293o4.Position = Vector3.new(-12.900528, 3.77991295, 50.5080605)
1294o4.Rotation = Vector3.new(-180, 20.6807137, -179.999985)
1295o4.Anchored = true
1296o4.CanCollide = false
1297o4.FormFactor = Enum.FormFactor.Custom
1298o4.Shape = Enum.PartType.Cylinder
1299o4.Size = Vector3.new(0.200000003, 0.320000023, 0.939999998)
1300o4.CFrame = CFrame.new(-12.900528, 3.77991295, 50.5080605, -0.935553849, 3.06141374e-007, 0.353159934, 3.19927466e-007, 1, 2.01617603e-008, -0.353163034, 1.1997561e-007, -0.935561478)
1301o4.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1302o4.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1303o4.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1304o4.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1305o4.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1306o4.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1307o5.Name = "Lense2"
1308o5.Parent = o1
1309o5.Material = Enum.Material.Metal
1310o5.Transparency = 0.050000011920929
1311o5.Position = Vector3.new(-12.8961124, 3.77492094, 50.0302277)
1312o5.Rotation = Vector3.new(-180, -23.8323021, -179.999985)
1313o5.Anchored = true
1314o5.CanCollide = false
1315o5.FormFactor = Enum.FormFactor.Custom
1316o5.Shape = Enum.PartType.Cylinder
1317o5.Size = Vector3.new(0.200000003, 0.330000043, 0.99000001)
1318o5.CFrame = CFrame.new(-12.8961124, 3.77492094, 50.0302277, -0.914722979, 2.85652249e-007, -0.404061079, 2.36339361e-007, 1, 1.37493373e-007, 0.404064298, 2.15865228e-008, -0.914730668)
1319o5.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1320o5.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1321o5.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1322o5.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1323o5.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1324o5.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1325o6.Name = "Handle"
1326o6.Parent = o1
1327o6.Material = Enum.Material.Metal
1328o6.BrickColor = BrickColor.new("Really black")
1329o6.Position = Vector3.new(-12.8799381, 3.69992495, 50.2599869)
1330o6.Rotation = Vector3.new(-90, 9.97842108e-006, -89.9999008)
1331o6.Anchored = true
1332o6.CanCollide = false
1333o6.FormFactor = Enum.FormFactor.Plate
1334o6.Size = Vector3.new(1, 0.400000006, 1)
1335o6.CFrame = CFrame.new(-12.8799381, 3.69992495, 50.2599869, 1.75646369e-006, 0.999991417, 1.74156298e-007, -1.04150445e-007, -1.60883403e-007, 1, 0.999999762, -1.6223396e-006, 9.62157287e-008)
1336o6.BottomSurface = Enum.SurfaceType.Weld
1337o6.TopSurface = Enum.SurfaceType.Smooth
1338o6.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
1339o7.Parent = o6
1340o7.MeshId = "http://www.roblox.com/asset/?id=5158270"
1341o7.Scale = Vector3.new(0.140000001, 0.170000002, 0.100000001)
1342o7.MeshType = Enum.MeshType.FileMesh
1343o8.Name = "Straps"
1344o8.Parent = o1
1345o8.Material = Enum.Material.Fabric
1346o8.BrickColor = BrickColor.new("Really black")
1347o8.Position = Vector3.new(-13.5199518, 3.48991394, 50.2599869)
1348o8.Rotation = Vector3.new(5.96738209e-006, 0.000100637961, 89.9999924)
1349o8.Anchored = true
1350o8.CanCollide = false
1351o8.FormFactor = Enum.FormFactor.Custom
1352o8.Shape = Enum.PartType.Cylinder
1353o8.Size = Vector3.new(0.200000003, 1.49000013, 1.25999999)
1354o8.CFrame = CFrame.new(-13.5199518, 3.48991394, 50.2599869, 1.44325043e-007, -0.999991238, 1.75646369e-006, 0.999999881, 1.31081052e-007, -1.04150445e-007, 9.48765404e-008, 1.6242019e-006, 0.999999762)
1355o8.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1356o8.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1357o8.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1358o8.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1359o8.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1360o8.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1361o8.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
1362o9.Name = "Ring2"
1363o9.Parent = o1
1364o9.BrickColor = BrickColor.new("Dark stone grey")
1365o9.Position = Vector3.new(-12.8061161, 3.77991295, 49.9993477)
1366o9.Rotation = Vector3.new(-1.48261315e-005, -66.1664276, -2.4695395e-005)
1367o9.Anchored = true
1368o9.CanCollide = false
1369o9.FormFactor = Enum.FormFactor.Custom
1370o9.Size = Vector3.new(0.600000024, 0.200000003, 1)
1371o9.CFrame = CFrame.new(-12.8061161, 3.77991295, 49.9993477, 0.404059976, 1.74156298e-007, -0.914723039, -1.6136562e-007, 1, 1.0455733e-007, 0.914730787, 9.62157287e-008, 0.404063195)
1372o9.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1373o9.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1374o9.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1375o9.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1376o9.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1377o9.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1378o9.Color = Color3.new(0.388235, 0.372549, 0.384314)
1379o10.Parent = o9
1380o10.MeshId = "http://www.roblox.com/asset/?id=3270017"
1381o10.Scale = Vector3.new(0.340000004, 0.300000012, 0.300000012)
1382o10.MeshType = Enum.MeshType.FileMesh
1383o11.Name = "Straps"
1384o11.Parent = o1
1385o11.Material = Enum.Material.Fabric
1386o11.BrickColor = BrickColor.new("Really black")
1387o11.Position = Vector3.new(-13.5199518, 4.00991392, 50.2599869)
1388o11.Rotation = Vector3.new(5.96738209e-006, 0.000100637961, 89.9999924)
1389o11.Anchored = true
1390o11.CanCollide = false
1391o11.FormFactor = Enum.FormFactor.Custom
1392o11.Shape = Enum.PartType.Cylinder
1393o11.Size = Vector3.new(0.200000003, 1.49000013, 1.25999999)
1394o11.CFrame = CFrame.new(-13.5199518, 4.00991392, 50.2599869, 1.44325043e-007, -0.999991238, 1.75646369e-006, 0.999999881, 1.31081052e-007, -1.04150445e-007, 9.48765404e-008, 1.6242019e-006, 0.999999762)
1395o11.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1396o11.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1397o11.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1398o11.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1399o11.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1400o11.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1401o11.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
1402o12.Name = "Ring1"
1403o12.Parent = o1
1404o12.BrickColor = BrickColor.new("Dark stone grey")
1405o12.Position = Vector3.new(-12.7999144, 3.76992106, 50.5299988)
1406o12.Rotation = Vector3.new(-179.999969, -69.3177338, -179.999985)
1407o12.Anchored = true
1408o12.CanCollide = false
1409o12.FormFactor = Enum.FormFactor.Custom
1410o12.Size = Vector3.new(0.600000024, 0.200000003, 1)
1411o12.CFrame = CFrame.new(-12.7999144, 3.76992106, 50.5299988, -0.353160918, 1.74156298e-007, -0.935553372, -4.22077129e-008, 1, 1.87534141e-007, 0.935561061, 9.62157287e-008, -0.353164017)
1412o12.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1413o12.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1414o12.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1415o12.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1416o12.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1417o12.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1418o12.Color = Color3.new(0.388235, 0.372549, 0.384314)
1419o13.Parent = o12
1420o13.MeshId = "http://www.roblox.com/asset/?id=3270017"
1421o13.Scale = Vector3.new(0.340000004, 0.300000012, 0.300000012)
1422o13.MeshType = Enum.MeshType.FileMesh
1423o14.Name = "Breather"
1424o14.Parent = o1
1425o14.Material = Enum.Material.Metal
1426o14.BrickColor = BrickColor.new("Really black")
1427o14.Position = Vector3.new(-12.7419596, 3.69627094, 50.2550011)
1428o14.Rotation = Vector3.new(5.96738209e-006, 0.000100637961, -39.5510521)
1429o14.Anchored = true
1430o14.CanCollide = false
1431o14.FormFactor = Enum.FormFactor.Custom
1432o14.Shape = Enum.PartType.Cylinder
1433o14.Size = Vector3.new(0.600000024, 0.340000093, 0.25000003)
1434o14.CFrame = CFrame.new(-12.7419596, 3.69627094, 50.2550011, 0.771050453, 0.636759639, 1.75646369e-006, -0.636765182, 0.771057129, -1.04150445e-007, -1.31184265e-006, -9.5997575e-007, 0.999999762)
1435o14.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1436o14.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1437o14.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1438o14.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1439o14.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1440o14.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1441o14.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
1442o15.Name = "Breather123"
1443o15.Parent = o1
1444PENIS = o15
1445o15.Material = Enum.Material.Metal
1446o15.BrickColor = BrickColor.new("Really black")
1447o15.Position = Vector3.new(-12.5337915, 3.51434994, 50.2550011)
1448o15.Rotation = Vector3.new(5.96738209e-006, 0.000100637961, -39.5510521)
1449o15.Anchored = true
1450o15.CanCollide = false
1451o15.FormFactor = Enum.FormFactor.Custom
1452o15.Shape = Enum.PartType.Cylinder
1453o15.Size = Vector3.new(0.200000003, 0.340000093, 0.350000024)
1454o15.CFrame = CFrame.new(-12.5337915, 3.51434994, 50.2550011, 0.771050453, 0.636759639, 1.75646369e-006, -0.636765182, 0.771057129, -1.04150445e-007, -1.31184265e-006, -9.5997575e-007, 0.999999762)
1455o15.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1456o15.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1457o15.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1458o15.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1459o15.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1460o15.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1461o15.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
1462o16.Name = "Breather"
1463o16.Parent = o1
1464o16.Material = Enum.Material.Metal
1465o16.BrickColor = BrickColor.new("Really black")
1466o16.Position = Vector3.new(-12.7920103, 3.39220095, 49.784256)
1467o16.Rotation = Vector3.new(10.8745985, 48.2677155, -21.6106548)
1468o16.Anchored = true
1469o16.CanCollide = false
1470o16.FormFactor = Enum.FormFactor.Custom
1471o16.Shape = Enum.PartType.Cylinder
1472o16.Size = Vector3.new(0.230000019, 0.540000081, 0.75)
1473o16.CFrame = CFrame.new(-12.7920103, 3.39220095, 49.784256, 0.618847609, 0.24515225, 0.746263206, -0.230788618, 0.96486491, -0.125580132, -0.75083673, -0.0945150182, 0.653688967)
1474o16.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1475o16.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1476o16.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1477o16.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1478o16.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1479o16.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1480o16.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
1481o17.Name = "Breather"
1482o17.Parent = o1
1483o17.Material = Enum.Material.Metal
1484o17.BrickColor = BrickColor.new("Really black")
1485o17.Position = Vector3.new(-12.8723783, 3.42192006, 49.8816109)
1486o17.Rotation = Vector3.new(10.8745985, 48.2677155, -21.6106548)
1487o17.Anchored = true
1488o17.CanCollide = false
1489o17.FormFactor = Enum.FormFactor.Custom
1490o17.Shape = Enum.PartType.Cylinder
1491o17.Size = Vector3.new(0.370000005, 0.540000081, 0.310000002)
1492o17.CFrame = CFrame.new(-12.8723783, 3.42192006, 49.8816109, 0.618847609, 0.24515225, 0.746263206, -0.230788618, 0.96486491, -0.125580132, -0.75083673, -0.0945150182, 0.653688967)
1493o17.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1494o17.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1495o17.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1496o17.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1497o17.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1498o17.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1499o17.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
1500
1501function onTouched(hit)
1502 local d = hit.Parent:GetChildren()
1503 for i=1, #d do
1504 if (d[i].className == "Hat") then
1505 d[i]:remove()
1506 end
1507 end
1508 if hit.Parent:findFirstChild("Police") ~= nil and hit.Parent:findFirstChild("Face") == nil then
1509 local g = o1:clone()
1510 g.Parent = hit.Parent
1511 local C = g:GetChildren()
1512 for i=1, #C do
1513 if C[i].className == "Part" then
1514 local W = Instance.new("Weld")
1515 W.Part0 = g.Middle
1516 W.Part1 = C[i]
1517 local CJ = CFrame.new(g.Middle.Position)
1518 local C0 = g.Middle.CFrame:inverse()*CJ
1519 local C1 = C[i].CFrame:inverse()*CJ
1520 W.C0 = C0
1521 W.C1 = C1
1522 W.Parent = g.Middle
1523 g.Middle.Transparency = 1
1524 end
1525 local Y = Instance.new("Weld")
1526 Y.Part0 = hit.Parent.Head
1527 Y.Part1 = g.Middle
1528 Y.C0 = CFrame.new(0, 0, 0)
1529 Y.Parent = Y.Part0
1530 end
1531
1532 local h = g:GetChildren()
1533 for i = 1, # h do
1534 h[i].Anchored = false
1535 h[i].CanCollide = false
1536 end
1537
1538 end
1539end
1540onTouched(game.Players.LocalPlayer.Character.Head)
1541end
1542
1543game.Players.LocalPlayer:GetMouse().KeyDown:connect(function(Nazikey)
1544if Nazikey == "q" and HEIL == false and Standby == false then
1545Standby = true
1546ao1 = Instance.new("Weld")
1547ao1.Name = "qCFrameWeldThingy"
1548ao1.Parent = game.Players.LocalPlayer.Character["Left Arm"]
1549ao1.C1 = CFrame.new(1.5, 0.670220256, 0.470133305, 1, 0, 0, 0, -0.340440512, 0.940266073, 0, -0.940266013, -0.340440542)
1550ao1.Part1 = game.Players.LocalPlayer.Character["Left Arm"]
1551ao1.Part0 = game.Players.LocalPlayer.Character["Torso"]
1552chatfunc("FREEZE! YOU ARE UNDER ARREST, YOU HAVE THE RIGHT TO REMAIN SILENT!")
1553wait(1)
1554Standby = false
1555HEIL = true
1556end
1557end)
1558
1559
1560
1561game.Players.LocalPlayer:GetMouse().KeyDown:connect(function(Nazikey)
1562if Nazikey == "q" and HEIL == true and Standby == false then
1563Standby = true
1564ao1:Destroy()
1565
1566aso1 = Instance.new("Motor6D")
1567aso1.Name = "Left Shoulder"
1568aso1.Parent = game.Players.LocalPlayer.Character
1569aso1.Part0 = game.Players.LocalPlayer.Character["Torso"]
1570aso1.Part1 = game.Players.LocalPlayer.Character["Left Arm"]
1571aso1.C0 = CFrame.new(-1, 0.5, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0)
1572aso1.C1 = CFrame.new(0.5, 0.5, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0)
1573aso1.MaxVelocity = 0.10000000149012
1574
1575wait(1)
1576Standby = false
1577HEIL = false
1578end
1579end)
1580
1581function onChatted(msg)
1582chatfunc(msg)
1583end
1584
1585game.Players.LocalPlayer.Chatted:connect(onChatted)
1586a =Instance.new("ForceField",game.Players.LocalPlayer.Character)
1587a.Visible = false
1588
1589ko1 = Instance.new("Tool")
1590ko2 = Instance.new("Part")
1591ko3 = Instance.new("SpecialMesh")
1592ko1.Name = "Handcuffs"
1593ko1.ToolTip = "If you need to jail some bad scripts, use this. Lieutenant Pancake.."
1594ko1.Parent = game.Players.LocalPlayer.Backpack
1595ko1.GripForward = Vector3.new(0.516, -0.731, -0.447)
1596ko1.GripPos = Vector3.new(0, 0, 0)
1597ko1.GripRight = Vector3.new(0.817, 0.577, -0)
1598ko1.GripUp = Vector3.new(-0.258, 0.365, -0.894)
1599ko2.Name = "Handle"
1600ko2.Parent = ko1
1601ko2.Position = Vector3.new(-8.63891602, 3.46599722, 11.8730764)
1602ko2.Rotation = Vector3.new(-89.5599976, -1.22000003, 64.8300018)
1603ko2.Velocity = Vector3.new(-2.6699802e-16, 0, -9.00922507e-17)
1604ko2.CanCollide = false
1605ko2.FormFactor = Enum.FormFactor.Custom
1606ko2.Size = Vector3.new(1.34934628, 1.24865007, 0.59563154)
1607ko2.CFrame = CFrame.new(-8.63891602, 3.46599722, 11.8730764, 0.42520842, -0.904846132, -0.0212447792, 0.0159687921, -0.0159687921, 0.999744892, -0.904954553, -0.42543906, 0.0076592355)
1608ko2.Position = Vector3.new(-8.63891602, 3.46599722, 11.8730764)
1609ko2.Orientation = Vector3.new(-88.7099991, -70.1699982, 135)
1610ko3.Parent = ko2
1611ko3.MeshId = "http://www.roblox.com/asset/?id=88046657"
1612ko3.Scale = Vector3.new(1.25, 1.25, 1.25)
1613ko3.TextureId = "http://www.roblox.com/asset/?id=88046679"
1614ko3.MeshType = Enum.MeshType.FileMesh
1615ko3.Scale = Vector3.new(1.25, 1.25, 1.25)
1616
1617
1618ko1.Equipped:connect(function(m)
1619m.Button1Down:connect(function()
1620if m.Target~=nil then
1621--print(m.Target:GetFullName())
1622p=nil
1623_,p=pcall(function() return game.Players[m.Target.Parent.Name] end)
1624--print(p)
1625--print(m.Target.Parent.Name)
1626if p~=nil then
1627local detained=p
1628chatfunc("Stop talking, you are being arrested for the better good.")
1629coroutine.wrap(function()
1630 local c=p
1631 while p==c do wait() pcall(function()
1632 pcall(function()
1633 for i, v in pairs(p.Character:children()) do
1634 if v:IsA("Humanoid")then
1635 if v.Name == "Police" then else
1636
1637 p.Character.Head.Anchored,p.Character.Head.CFrame=true,game.Players.LocalPlayer.Character.Head.CFrame*CFrame.new(0,0,-5)
1638 end
1639 end
1640 end
1641 end)
1642 end)
1643
1644 --print('END OF DETAIN LOOP')
1645 pcall(function() c.Character.Head.Anchored=false end)
1646end
1647end)()
1648else --print('no p')
1649end
1650end
1651end)
1652end)
1653
1654shodanio = Instance.new("Tool")
1655shio1 = Instance.new("Part")
1656shio2 = Instance.new("SpecialMesh")
1657shodanio.Name = "Your Knife"
1658shodanio.Parent = game.Players.LocalPlayer.Backpack
1659shodanio.TextureId = "rbxassetid://207414025"
1660shodanio.GripForward = Vector3.new(0.709005952, 0.456599832, 0.537426531)
1661shodanio.GripPos = Vector3.new(-0.200000003, -0.5, 0.100000001)
1662shodanio.GripRight = Vector3.new(-0.677205563, 0.22823669, 0.699500203)
1663shodanio.GripUp = Vector3.new(-0.19673121, 0.859898031, -0.471033096)
1664shodanio.ToolTip = "This is your only self-defense weapon."
1665shio1.Name = "Handle"
1666shio1.Parent = shodanio
1667shio1.BrickColor = BrickColor.new("Really black")
1668shio1.Position = Vector3.new(21.1252537, 4.90351295, -17.4292831)
1669shio1.Rotation = Vector3.new(-47.1599998, 72.2600021, 0.819999993)
1670shio1.CanCollide = false
1671shio1.Size = Vector3.new(0.570000052, 1.80999982, 0.100000009)
1672shio1.CFrame = CFrame.new(21.1252537, 4.90351295, -17.4292831, 0.304745227, -0.00437635183, 0.952423692, -0.688487232, 0.689963102, 0.22346428, -0.658115208, -0.723831236, 0.207249701)
1673shio1.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
1674shio1.Position = Vector3.new(21.1252537, 4.90351295, -17.4292831)
1675shio1.Orientation = Vector3.new(-12.9099998, 77.7200012, -44.9399986)
1676shio1.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
1677shio2.Parent = shio1
1678shio2.MeshId = "rbxassetid://1565065512"
1679shio2.Scale = Vector3.new(0.22, 0.22, 0.22)
1680shio2.MeshType = Enum.MeshType.FileMesh
1681shio2.Scale = Vector3.new(0.22, 0.22, 0.22)
1682
1683shodanio.Equipped:connect(function()
1684local SND = Instance.new("Sound")
1685SND.Parent = shio1
1686SND.SoundId = "rbxassetid://608618332"
1687SND.PlayOnRemove = true
1688wait(.1)
1689SND:Destroy()
1690KNIPED = true
1691o10 = Instance.new("Weld")
1692o11 = Instance.new("CFrameValue")
1693o13 = Instance.new("Weld")
1694o14 = Instance.new("CFrameValue")
1695
1696o10.Name = "qCFrameWeldThingy"
1697o10.Parent = game.Players.LocalPlayer.Character["Left Arm"]
1698o10.C1 = CFrame.new(1.47942162, 0.253675461, -0.989979267, 0.926165819, 0.0532538369, 0.373335451, -0.377114445, 0.130787581, 0.91688484, -3.7252903e-09, -0.989979088, 0.141213775)
1699o10.C0 = CFrame.new(0,1.5,0)
1700o10.Part0 = game.Players.LocalPlayer.Character.Torso
1701o10.Part1 = game.Players.LocalPlayer.Character["Left Arm"]
1702o11.Name = "qRelativeCFrameWeldValue"
1703o11.Parent = game.Players.LocalPlayer.Character["Left Arm"]
1704o11.Value = CFrame.new(1.47942162, 0.253675461, -0.989979267, 0.926165819, 0.0532538369, 0.373335451, -0.377114445, 0.130787581, 0.91688484, -3.7252903e-09, -0.989979088, 0.141213775)
1705
1706o13.Name = "qCFrameWeldThingy"
1707o13.Parent = game.Players.LocalPlayer.Character["Right Arm"]
1708o13.C1 = CFrame.new(-0.06899786, 0.0721435547, -1.73576927, 0.568966389, 0.780035675, -0.260424674, 0.354608625, 0.0530088954, 0.933510303, 0.741976023, -0.623485744, -0.246447071)
1709o13.C0 = CFrame.new(0,1.5,0)
1710o13.Part0 = game.Players.LocalPlayer.Character.Torso
1711o13.Part1 = game.Players.LocalPlayer.Character["Right Arm"]
1712o14.Name = "qRelativeCFrameWeldValue"
1713o14.Parent = game.Players.LocalPlayer.Character["Right Arm"]
1714o14.Value = CFrame.new(-0.06899786, 0.0721435547, -1.73576927, 0.568966389, 0.780035675, -0.260424674, 0.354608625, 0.0530088954, 0.933510303, 0.741976023, -0.623485744, -0.246447071)
1715end)
1716
1717shodanio.Unequipped:connect(function()
1718wait(.2)
1719local SND = Instance.new("Sound")
1720SND.Parent = shio1
1721SND.SoundId = "rbxassetid://608618332"
1722SND.PlayOnRemove = true
1723wait(.1)
1724SND:Destroy()
1725KNIPED = false
1726o10:Destroy()
1727o11:Destroy()
1728o13:Destroy()
1729o14:Destroy()
1730local o7 = Instance.new("Motor6D")
1731local o8 = Instance.new("Motor6D")
1732o7.Name = "Left Shoulder"
1733o7.Parent = game.Players.LocalPlayer.Character.Torso
1734o7.C0 = CFrame.new(-1, 0.5, 0, -4.37113883e-08, 0, -1, 0, 0.99999994, 0, 1, 0, -4.37113883e-08)
1735o7.C1 = CFrame.new(0.5, 0.5, 0, -4.37113883e-08, 0, -1, 0, 0.99999994, 0, 1, 0, -4.37113883e-08)
1736o7.Part0 = game.Players.LocalPlayer.Character.Torso
1737o7.Part1 = game.Players.LocalPlayer.Character["Left Arm"]
1738o7.MaxVelocity = 0.10000000149012
1739o8.Name = "Right Shoulder"
1740o8.Parent = game.Players.LocalPlayer.Character.Torso
1741o8.C0 = CFrame.new(1, 0.5, 0, -4.37113883e-08, 0, 1, -0, 0.99999994, 0, -1, 0, -4.37113883e-08)
1742o8.C1 = CFrame.new(-0.5, 0.5, 0, -4.37113883e-08, 0, 1, 0, 0.99999994, 0, -1, 0, -4.37113883e-08)
1743o8.Part0 = game.Players.LocalPlayer.Character.Torso
1744o8.Part1 = game.Players.LocalPlayer.Character["Right Arm"]
1745o8.MaxVelocity = 0.10000000149012
1746end)
1747EWE = false
1748Debounce = false
1749game.Players.LocalPlayer:GetMouse().Button1Down:connect(function()
1750if KNIPED == true and ATACK == false and EWE == false then
1751EWE = true
1752o10.C1 = CFrame.new(1.47941971, 1.10494518, -0.821447372, 0.926165819, 0.0532538369, 0.373335451, -0.240676075, 0.845621467, 0.476443946, -0.290328026, -0.531119823, 0.796002567)
1753o11.Value = CFrame.new(1.47941971, 1.10494518, -0.821447372, 0.926165819, 0.0532538369, 0.373335451, -0.240676075, 0.845621467, 0.476443946, -0.290328026, -0.531119823, 0.796002567)
1754
1755o13.C1 = CFrame.new(-0.0689969063, -0.623306274, -1.35078812, 0.568966389, 0.780035615, -0.260424674, 0.701693177, -0.295354694, 0.648375571, 0.428838491, -0.551643014, -0.71539253)
1756o14.Value = CFrame.new(-0.0689969063, -0.623306274, -1.35078812, 0.568966389, 0.780035615, -0.260424674, 0.701693177, -0.295354694, 0.648375571, 0.428838491, -0.551643014, -0.71539253)
1757
1758shodanio.GripForward = Vector3.new(0.999, -0.035, -0.007)
1759shodanio.GripPos = Vector3.new(-0.2, -0.5, 0.1)
1760shodanio.GripRight = Vector3.new(0, 0.196, -0.981)
1761shodanio.GripUp = Vector3.new(-0.036, -0.98, -0.196)
1762ATACK = true
1763
1764game.Players.LocalPlayer.Character.Police.JumpPower = 15
1765wait(.1)
1766game.Players.LocalPlayer.Character.Police.Jump = true
1767local TORQUE = Instance.new("Torque")
1768TORQUE.Parent = game.Players.LocalPlayer.Character.Torso
1769TORQUE.Attachment0 = AT
1770TORQUE.Torque = Vector3.new(0, 200000, 0)
1771TORQUE.Enabled = true
1772
1773wait(.05)
1774game.Players.LocalPlayer.Character.Police.JumpPower = 50
1775TORQUE:Destroy()
1776ATACK = false
1777game.Players.LocalPlayer.Character.HumanoidRootPart.RootJoint.C0 = CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, 1, 0, 1, -0)
1778game.Players.LocalPlayer.Character.HumanoidRootPart.RootJoint.C1 = CFrame.new(0, 0, 0, -0.403074712, -0.915167093, 0, 0, 0, 1, -0.915167093, 0.403074712, 0)
1779end
1780end)
1781game.Players.LocalPlayer:GetMouse().Button1Up:connect(function()
1782 if KNIPED == true and ATACK == false and EWE == true then
1783ATACK = true
1784EWE = false
1785shodanio.GripForward = Vector3.new(0.951, 0.308, 0)
1786shodanio.GripPos = Vector3.new(-0.2, -0.5, 0.1)
1787shodanio.GripRight = Vector3.new(0, 0, 1)
1788shodanio.GripUp = Vector3.new(-0.308, 0.951, 0)
1789
1790o10.C1 = CFrame.new(1.41301823, 0.0853495598, 0.494428158, 0.938678324, 0.0513189547, 0.340953499, -0.344794095, 0.139712349, 0.928222597, 0, -0.988854587, 0.148840427)
1791o11.Value = CFrame.new(1.41301823, 0.0853495598, 0.494428158, 0.938678324, 0.0513189547, 0.340953499, -0.344794095, 0.139712349, 0.928222597, 0, -0.988854587, 0.148840427)
1792
1793o13.C1 = CFrame.new(-1.19023156, -0.0163340569, -0.449222565, 0.539222777, 0.823833048, -0.174724758, 0.652251244, -0.277294189, 0.705461025, 0.532735348, -0.494361669, -0.68687427)
1794o14.Value = CFrame.new(-1.19023156, -0.0163340569, -0.449222565, 0.539222777, 0.823833048, -0.174724758, 0.652251244, -0.277294189, 0.705461025, 0.532735348, -0.494361669, -0.68687427)
1795o10.C0 = CFrame.new(0,0,0)
1796o13.C0 = CFrame.new(0,0,0)
1797game.Players.LocalPlayer.Character.HumanoidRootPart.RootJoint.C0 = CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, 1, 0, 1, 0)
1798game.Players.LocalPlayer.Character.HumanoidRootPart.RootJoint.C1 = CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, 1, 0, 1, 0)
1799
1800
1801game.Players.LocalPlayer.Character.Police.JumpPower = 15
1802wait(.1)
1803game.Players.LocalPlayer.Character.Police.Jump = true
1804local TORQUE = Instance.new("Torque")
1805TORQUE.Parent = game.Players.LocalPlayer.Character.Torso
1806TORQUE.Attachment0 = AT
1807TORQUE.Torque = Vector3.new(0, -200000, 0)
1808TORQUE.Enabled = true
1809wait(.05)
1810game.Players.LocalPlayer.Character.Police.JumpPower = 50
1811TORQUE:Destroy()
1812shodanio.GripForward = Vector3.new(0.709005952, 0.456599832, 0.537426531)
1813shodanio.GripPos = Vector3.new(-0.200000003, -0.5, 0.100000001)
1814shodanio.GripRight = Vector3.new(-0.677205563, 0.22823669, 0.699500203)
1815shodanio.GripUp = Vector3.new(-0.19673121, 0.859898031, -0.471033096)
1816o10.C0 = CFrame.new(0,1.5,0)
1817o13.C0 = CFrame.new(0,1.5,0)
1818o10.Name = "qCFrameWeldThingy"
1819o10.Parent = game.Players.LocalPlayer.Character["Left Arm"]
1820o10.C1 = CFrame.new(1.47942162, 0.253675461, -0.989979267, 0.926165819, 0.0532538369, 0.373335451, -0.377114445, 0.130787581, 0.91688484, -3.7252903e-09, -0.989979088, 0.141213775)
1821o10.C0 = CFrame.new(0,1.5,0)
1822o10.Part0 = game.Players.LocalPlayer.Character.Torso
1823o10.Part1 = game.Players.LocalPlayer.Character["Left Arm"]
1824o11.Name = "qRelativeCFrameWeldValue"
1825o11.Parent = game.Players.LocalPlayer.Character["Left Arm"]
1826o11.Value = CFrame.new(1.47942162, 0.253675461, -0.989979267, 0.926165819, 0.0532538369, 0.373335451, -0.377114445, 0.130787581, 0.91688484, -3.7252903e-09, -0.989979088, 0.141213775)
1827
1828o13.Name = "qCFrameWeldThingy"
1829o13.Parent = game.Players.LocalPlayer.Character["Right Arm"]
1830o13.C1 = CFrame.new(-0.06899786, 0.0721435547, -1.73576927, 0.568966389, 0.780035675, -0.260424674, 0.354608625, 0.0530088954, 0.933510303, 0.741976023, -0.623485744, -0.246447071)
1831o13.C0 = CFrame.new(0,1.5,0)
1832o13.Part0 = game.Players.LocalPlayer.Character.Torso
1833o13.Part1 = game.Players.LocalPlayer.Character["Right Arm"]
1834o14.Name = "qRelativeCFrameWeldValue"
1835o14.Parent = game.Players.LocalPlayer.Character["Right Arm"]
1836o14.Value = CFrame.new(-0.06899786, 0.0721435547, -1.73576927, 0.568966389, 0.780035675, -0.260424674, 0.354608625, 0.0530088954, 0.933510303, 0.741976023, -0.623485744, -0.246447071)
1837
1838game.Players.LocalPlayer.Character.HumanoidRootPart.RootJoint.C0 = CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, 1, 0, 1, 0)
1839game.Players.LocalPlayer.Character.HumanoidRootPart.RootJoint.C1 = CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, 1, 0, 1, 0)
1840wait(.1)
1841ATACK = false
1842end
1843end)
1844shio1.Touched:connect(function(tuoch)
1845 if ATACK == true and Debounce == false then
1846 --print("STABBY STAB")
1847chatfunc("Let that be a lesson to you")
1848Debounce = true
1849
1850CFuncs["Sound"].Create("rbxassetid://202427593",tuoch, 1, 1)
1851local Victimm = tuoch.Parent
1852Debounce = false
1853pcall(function()
1854for i, v in pairs(tuoch.Parent:children()) do
1855 if v:IsA("Humanoid")then
1856 if v.Name == "Police" then else
1857 v.Name = "Humanoid2" end
1858 end
1859 end
1860end)
1861local Victimm = tuoch.Parent
1862tuoch.Parent.Humanoid2.PlatformStand = true
1863local player = Victimm
1864local char = Victimm
1865local rg = char
1866
1867CFuncs["Sound"].Create("rbxassetid://605536910",tuoch, 1, 1)
1868 char.Archivable = true
1869 for i, v in pairs(rg.Torso:GetChildren()) do
1870 if v:IsA("Motor6D") then
1871 v:Destroy()
1872 end
1873 end
1874 rg.Torso:BreakJoints()
1875 local TorsoPointNeckAttachment = Instance.new("Attachment")
1876 TorsoPointNeckAttachment.Name = "TorsoPointNeckAttachment"
1877 TorsoPointNeckAttachment.Parent = rg.Torso
1878 TorsoPointNeckAttachment.Position = Vector3.new(0,1,0)
1879 TorsoPointNeckAttachment.Axis = Vector3.new(1,0,0)
1880 TorsoPointNeckAttachment.SecondaryAxis = Vector3.new(0,1,0)
1881 local HeadPointNeckAttachment= Instance.new("Attachment")
1882 HeadPointNeckAttachment.Name = "HeadPointNeckAttachment"
1883 HeadPointNeckAttachment.Parent = rg.Head
1884 HeadPointNeckAttachment.Position = Vector3.new(0,-0.5,0)
1885 HeadPointNeckAttachment.Axis = Vector3.new(1,0,0)
1886 HeadPointNeckAttachment.SecondaryAxis = Vector3.new(0,1,0)
1887 local LeftArmPointAttachment = Instance.new("Attachment")
1888 LeftArmPointAttachment.Name = "LeftArmPointAttachment"
1889 LeftArmPointAttachment.Parent = rg["Left Arm"]
1890 LeftArmPointAttachment.Position = Vector3.new(0,0.5,0)
1891 LeftArmPointAttachment.Axis = Vector3.new(1,0,0)
1892 LeftArmPointAttachment.SecondaryAxis = Vector3.new(0,1,0)
1893 local RightArmPointAttachment = Instance.new("Attachment")
1894 RightArmPointAttachment.Name = "RightArmPointAttachment"
1895 RightArmPointAttachment.Parent = rg["Right Arm"]
1896 RightArmPointAttachment.Position = Vector3.new(0,0.5,0)
1897 RightArmPointAttachment.Axis = Vector3.new(1,0,0)
1898 RightArmPointAttachment.SecondaryAxis = Vector3.new(0,1,0)
1899 local LeftLegPointAttachment = Instance.new("Attachment")
1900 LeftLegPointAttachment.Name = "LeftLegPointAttachment"
1901 LeftLegPointAttachment.Parent = rg["Left Leg"]
1902 LeftLegPointAttachment.Position = Vector3.new(0,1,0)
1903 LeftLegPointAttachment.Axis = Vector3.new(1,0,0)
1904 LeftLegPointAttachment.SecondaryAxis = Vector3.new(0,1,0)
1905 local RightLegPointAttachment = Instance.new("Attachment")
1906 RightLegPointAttachment.Name = "RightLegPointAttachment"
1907 RightLegPointAttachment.Parent = rg["Right Leg"]
1908 RightLegPointAttachment.Position = Vector3.new(0,1,0)
1909 RightLegPointAttachment.Axis = Vector3.new(1,0,0)
1910 RightLegPointAttachment.SecondaryAxis = Vector3.new(0,1,0)
1911 local LeftHipPointAttachment = Instance.new("Attachment")
1912 LeftHipPointAttachment.Name = "LeftHipPointAttachment"
1913 LeftHipPointAttachment.Parent = rg.Torso
1914 LeftHipPointAttachment.Position = Vector3.new(-0.5,-1,0)
1915 LeftHipPointAttachment.Axis = Vector3.new(1,0,0)
1916 LeftHipPointAttachment.SecondaryAxis = Vector3.new(0,1,0)
1917 local RightHipPointAttachment = Instance.new("Attachment")
1918 RightHipPointAttachment.Name = "RightHipPointAttachment"
1919 RightHipPointAttachment.Parent = rg.Torso
1920 RightHipPointAttachment.Position = Vector3.new(0.5,-1,0)
1921 RightHipPointAttachment.Axis = Vector3.new(1,0,0)
1922 RightHipPointAttachment.SecondaryAxis = Vector3.new(0,1,0)
1923 local LeftShoulderPointAttachment = Instance.new("Attachment")
1924 LeftShoulderPointAttachment.Name = "LeftShoulderPointAttachment"
1925 LeftShoulderPointAttachment.Parent = rg.Torso
1926 LeftShoulderPointAttachment.Position = Vector3.new(-1.5,0.5,0)
1927 LeftShoulderPointAttachment.Axis = Vector3.new(1,0,0)
1928 LeftShoulderPointAttachment.SecondaryAxis = Vector3.new(0,1,0)
1929 local RightShoulderPointAttachment = Instance.new("Attachment")
1930 RightShoulderPointAttachment.Name = "RightShoulderPointAttachment"
1931 RightShoulderPointAttachment.Parent = rg.Torso
1932 RightShoulderPointAttachment.Position = Vector3.new(1.5,0.5,0)
1933 RightShoulderPointAttachment.Axis = Vector3.new(1,0,0)
1934 RightShoulderPointAttachment.SecondaryAxis = Vector3.new(0,1,0)
1935
1936
1937
1938
1939
1940
1941 local n = Instance.new("BallSocketConstraint", rg.Torso)
1942 n.Name = "BallSocketNeck"
1943 n.Attachment0 = TorsoPointNeckAttachment
1944 n.Attachment1 = HeadPointNeckAttachment
1945 n.Restitution = 0
1946 n.UpperAngle = 90
1947 n.Enabled = true
1948 n.LimitsEnabled = false
1949
1950 local rs = Instance.new("BallSocketConstraint", rg.Torso)
1951 rs.Name = "BallSocketRightShoulder"
1952 rs.Attachment0 = RightShoulderPointAttachment
1953 rs.Attachment1 = RightArmPointAttachment
1954 rs.Restitution = 0
1955 rs.UpperAngle = 90
1956 rs.Enabled = true
1957 rs.LimitsEnabled = false
1958 local ls = Instance.new("BallSocketConstraint", rg.Torso)
1959 ls.Name = "BallSocketLeftShoulder"
1960 ls.Attachment0 = LeftShoulderPointAttachment
1961 ls.Attachment1 = LeftArmPointAttachment
1962 ls.Restitution = 0
1963 ls.UpperAngle = 90
1964 ls.Enabled = true
1965 ls.LimitsEnabled = false
1966
1967 local rh = Instance.new("BallSocketConstraint", rg.Torso)
1968 rh.Name = "BallSocketRightHip"
1969 rh.Attachment0 = RightHipPointAttachment
1970 rh.Attachment1 = RightLegPointAttachment
1971 rh.Restitution = 0
1972 rh.UpperAngle = 90
1973 rh.Enabled = true
1974 rh.LimitsEnabled = false
1975 local lh = Instance.new("BallSocketConstraint", rg.Torso)
1976 lh.Name = "BallSocketLeftHip"
1977 lh.Attachment0 = LeftHipPointAttachment
1978 lh.Attachment1 = LeftLegPointAttachment
1979 lh.Restitution = 0
1980 lh.UpperAngle = 90
1981 lh.Enabled = true
1982 char.Humanoid2.PlatformStand = true
1983 char.Humanoid2.AutoRotate = false
1984 rg.Parent = game.Workspace
1985pcall(function()
1986for i, v in pairs(rg.Head:children()) do
1987 if v:IsA("Decal")then
1988v.Texture = "http://www.roblox.com/asset/?id=778409313"
1989 end
1990 end
1991end)
1992pcall(function()
1993for i, v in pairs(rg:children()) do
1994 if v:IsA("Part")then
1995 if v.Name == "HumanoidRootPart" then
1996 v:destroy() end
1997 end
1998 end
1999end)
2000 local runDummyScript = function(f,scri)
2001local oldenv = getfenv(f)
2002local newenv = setmetatable({}, {
2003__index = function(_, k)
2004if k:lower() == 'script' then
2005return scri
2006else
2007return oldenv[k]
2008end
2009end
2010})
2011setfenv(f, newenv)
2012ypcall(function() f() end)
2013end
2014local cors = {}
2015local mas = Instance.new("Model",game:GetService("Lighting"))
2016mas.Name = "Collidable Limbs"
2017local oo1 = Instance.new("Part")
2018local oo2 = Instance.new("Part")
2019local oo3 = Instance.new("Part")
2020local oo4 = Instance.new("Part")
2021local oo5 = Instance.new("Part")
2022local oo6 = Instance.new("Part")
2023local w1 = Instance.new("Weld")
2024local w2 = Instance.new("Weld")
2025local w3 = Instance.new("Weld")
2026local w4 = Instance.new("Weld")
2027local w5 = Instance.new("Weld")
2028local w6 = Instance.new("Weld")
2029oo1.Name = "CHead"
2030w1.Parent = oo1
2031w1.Part0 = w1.Parent
2032w1.Part1 = rg["Head"]
2033oo1.Parent = mas
2034oo1.Material = Enum.Material.SmoothPlastic
2035oo1.BrickColor = BrickColor.new("Institutional white")
2036oo1.Transparency = 1
2037oo1.Position = rg.Head.Position
2038oo1.Velocity = Vector3.new(0, -9.19685173, 0)
2039oo1.Locked = true
2040oo1.FormFactor = Enum.FormFactor.Symmetric
2041oo1.Size = Vector3.new(1, 1, 1)
2042oo1.CFrame = CFrame.new(0, 4.50001812, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
2043oo1.BottomSurface = Enum.SurfaceType.Smooth
2044oo1.TopSurface = Enum.SurfaceType.Smooth
2045oo1.Color = Color3.new(0.972549, 0.972549, 0.972549)
2046oo1.Position = Vector3.new(0, 4.50001812, 0)
2047oo1.CanCollide = false
2048
2049oo2.Name = "CT"
2050w2.Parent = oo2
2051w2.Part0 = w2.Parent
2052w2.Part1 = rg["Torso"]
2053oo2.Parent = mas
2054oo2.CanCollide = true
2055oo2.Material = Enum.Material.SmoothPlastic
2056oo2.BrickColor = BrickColor.new("Institutional white")
2057oo2.Transparency = 1
2058oo2.Position = rg.Torso.Position
2059oo2.Velocity = Vector3.new(0, -9.19685173, 0)
2060oo2.Locked = true
2061oo2.Anchored = false
2062oo2.FormFactor = Enum.FormFactor.Symmetric
2063oo2.Size = Vector3.new(2, 2, 1)
2064oo2.CFrame = CFrame.new(0, 3.00001788, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
2065oo2.BottomSurface = Enum.SurfaceType.Smooth
2066oo2.TopSurface = Enum.SurfaceType.Smooth
2067oo2.Color = Color3.new(0.972549, 0.972549, 0.972549)
2068oo2.Position = Vector3.new(0, 3.00001788, 0)
2069oo3.Name = "CLA"
2070oo3.CanCollide = true
2071w3.Parent = oo3
2072w3.Part0 = w3.Parent
2073w3.Part1 = rg["Left Arm"]
2074w3.C0 = CFrame.new(0, 0, 0)
2075w3.C1 = CFrame.new(0, -0.2, 0)
2076oo3.Parent = mas
2077oo3.Material = Enum.Material.SmoothPlastic
2078oo3.BrickColor = BrickColor.new("Institutional white")
2079oo3.Transparency = 1
2080oo3.Position = rg["Left Arm"].Position
2081oo3.Velocity = Vector3.new(0, -9.19685173, 0)
2082oo3.CanCollide = true
2083oo3.Locked = true
2084oo3.FormFactor = Enum.FormFactor.Symmetric
2085oo3.Size = Vector3.new(1, 1.40, 1)
2086oo3.CFrame = CFrame.new(-1.5, 3.00001788, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
2087oo3.BottomSurface = Enum.SurfaceType.Smooth
2088oo3.TopSurface = Enum.SurfaceType.Smooth
2089oo3.Color = Color3.new(0.972549, 0.972549, 0.972549)
2090oo3.Position = Vector3.new(-1.5, 3.00001788, 0)
2091oo4.Name = "CRA"
2092w4.Parent = oo4
2093w4.Part0 = w4.Parent
2094w4.Part1 = rg["Right Arm"]
2095w4.C0 = CFrame.new(0, 0, 0)
2096w4.C1 = CFrame.new(0, -0.2, 0)
2097oo4.Parent = mas
2098oo4.CanCollide = true
2099oo4.Material = Enum.Material.SmoothPlastic
2100oo4.BrickColor = BrickColor.new("Institutional white")
2101oo4.Transparency = 1
2102oo4.Position = Vector3.new(1.5, 3.00001788, 0)
2103oo4.Velocity = Vector3.new(0, -9.19685173, 0)
2104oo4.CanCollide = true
2105oo4.Locked = true
2106oo4.FormFactor = Enum.FormFactor.Symmetric
2107oo4.Size = Vector3.new(1, 1.40, 1)
2108oo4.CFrame = CFrame.new(1.5, 3.00001788, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
2109oo4.BottomSurface = Enum.SurfaceType.Smooth
2110oo4.TopSurface = Enum.SurfaceType.Smooth
2111oo4.Color = Color3.new(0.972549, 0.972549, 0.972549)
2112oo4.Position = rg["Right Arm"].Position
2113oo5.Name = "CLL"
2114oo5.Parent = mas
2115w5.Parent = oo5
2116w5.Part0 = w5.Parent
2117w5.Part1 = rg["Left Leg"]
2118w5.C0 = CFrame.new(0, 0, 0)
2119w5.C1 = CFrame.new(0, -0.2, 0)
2120oo5.Material = Enum.Material.SmoothPlastic
2121oo5.BrickColor = BrickColor.new("Institutional white")
2122oo5.Transparency = 1
2123oo5.CanCollide = true
2124oo5.Position = rg["Left Leg"].Position
2125oo5.Velocity = Vector3.new(0, -9.19685173, 0)
2126oo5.CanCollide = true
2127oo5.Locked = true
2128oo5.FormFactor = Enum.FormFactor.Symmetric
2129oo5.Size = Vector3.new(1, 1.65, 1)
2130oo5.CFrame = CFrame.new(-0.5, 1.00001788, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
2131oo5.BottomSurface = Enum.SurfaceType.Smooth
2132oo5.TopSurface = Enum.SurfaceType.Smooth
2133oo5.Color = Color3.new(0.972549, 0.972549, 0.972549)
2134oo5.Position = Vector3.new(-0.5, 1.00001788, 0)
2135oo6.Name = "CRL"
2136oo6.Parent = mas
2137oo6.Material = Enum.Material.SmoothPlastic
2138oo6.BrickColor = BrickColor.new("Institutional white")
2139oo6.Transparency = 1
2140oo6.Position = rg["Right Leg"].Position
2141oo6.Velocity = Vector3.new(0, -9.19685173, 0)
2142oo6.CanCollide = true
2143oo6.Locked = true
2144oo6.FormFactor = Enum.FormFactor.Symmetric
2145oo6.Size = Vector3.new(1, 1.65, 1)
2146oo6.CFrame = CFrame.new(0.5, 1.00001788, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
2147oo6.BottomSurface = Enum.SurfaceType.Smooth
2148oo6.TopSurface = Enum.SurfaceType.Smooth
2149oo6.Color = Color3.new(0.972549, 0.972549, 0.972549)
2150oo6.Position = Vector3.new(0.5, 1.00001788, 0)
2151oo6.CanCollide = true
2152w6.Parent = oo6
2153w6.Part0 = w6.Parent
2154w6.Part1 = rg["Right Leg"]
2155w6.C0 = CFrame.new(0, 0, 0)
2156w6.C1 = CFrame.new(0, -0.2, 0)
2157mas.Parent = rg
2158mas:MakeJoints()
2159raggeeh = rg
2160raggeeh.Head.Anchored = true
2161raggeeh.Humanoid2.PlatformStand = true
2162
2163local TUURS = raggeeh.Torso
2164local CPU = Instance.new("Model")
2165CPU.Parent = raggeeh
2166raggeeh.Parent = game:GetService("Workspace")
2167raggeeh.Torso.Velocity = game.Players.LocalPlayer.Character.Torso.CFrame.lookVector * 100
2168
2169raggeeh.Parent = game:GetService("Workspace")
2170
2171raggeeh.Parent = game:GetService("Workspace")
2172wait()
2173raggeeh.Head.Anchored = false
2174local FOLDARR = Instance.new("Model")
2175FOLDARR.Parent = raggeeh
2176FOLDARR.Name = "BLUDDDDDDDDDDD"
2177local FLUIDS = Instance.new("Model")
2178FLUIDS.Name = Victimm.Name.."'s fluids"
2179FLUIDS.Parent = FOLDARR
2180raggeeh.Humanoid2.Name = "Humanoid2"
2181Debounce = false
2182raggeeh.Humanoid2.Health = .1
2183
2184
2185local runDummyScript = function(f,scri)
2186local oldenv = getfenv(f)
2187local newenv = setmetatable({}, {
2188__index = function(_, k)
2189if k:lower() == 'script' then
2190return scri
2191else
2192return oldenv[k]
2193end
2194end
2195})
2196setfenv(f, newenv)
2197ypcall(function() f() end)
2198end
2199cors = {}
2200mas = Instance.new("Model",game:GetService("Lighting"))
2201mas.Name = "CompiledModel"
2202aso1 = Instance.new("Script")
2203aso1.Name = "PS"
2204aso1.Parent = mas
2205table.insert(cors,coroutine.create(function()
2206wait()
2207runDummyScript(function()
2208 Create = LoadLibrary("RbxUtility").Create
2209function RemoveOutlines(part)
2210 part.TopSurface, part.BottomSurface, part.LeftSurface, part.RightSurface, part.FrontSurface, part.BackSurface = 10, 10, 10, 10, 10, 10
2211end
2212
2213CFuncs = {
2214 ["Part"] = {
2215 Create = function(Parent, Material, Reflectance, Transparency, BColor, Name, Size)
2216 local Part = Create("Part"){
2217 Parent = Parent,
2218 Reflectance = Reflectance,
2219 Transparency = Transparency,
2220 CanCollide = false,
2221 Locked = true,
2222 BrickColor = BrickColor.new(tostring(BColor)),
2223 Name = Name,
2224 Size = Size,
2225 Material = Material,
2226 }
2227 RemoveOutlines(Part)
2228 return Part
2229 end;
2230 };
2231
2232 ["Mesh"] = {
2233 Create = function(Mesh, Part, MeshType, MeshId, OffSet, Scale)
2234 local Msh = Create(Mesh){
2235 Parent = Part,
2236 Offset = OffSet,
2237 Scale = Scale,
2238 }
2239 if Mesh == "SpecialMesh" then
2240 Msh.MeshType = MeshType
2241 Msh.MeshId = MeshId
2242 end
2243 return Msh
2244 end;
2245 };
2246
2247 ["Mesh"] = {
2248 Create = function(Mesh, Part, MeshType, MeshId, OffSet, Scale)
2249 local Msh = Create(Mesh){
2250 Parent = Part,
2251 Offset = OffSet,
2252 Scale = Scale,
2253 }
2254 if Mesh == "SpecialMesh" then
2255 Msh.MeshType = MeshType
2256 Msh.MeshId = MeshId
2257 end
2258 return Msh
2259 end;
2260 };
2261
2262 ["Weld"] = {
2263 Create = function(Parent, Part0, Part1, C0, C1)
2264 local Weld = Create("Weld"){
2265 Parent = Parent,
2266 Part0 = Part0,
2267 Part1 = Part1,
2268 C0 = C0,
2269 C1 = C1,
2270 }
2271 return Weld
2272 end;
2273 };
2274
2275 ["Sound"] = {
2276 Create = function(id, par, vol, pit)
2277 coroutine.resume(coroutine.create(function()
2278 local S = Create("Sound"){
2279 Volume = vol,
2280 Pitch = pit or 1,
2281 SoundId = id,
2282 Parent = par or workspace,
2283 }
2284 wait()
2285 S:play()
2286 game:GetService("Debris"):AddItem(S, 6)
2287 end))
2288 end;
2289 };
2290
2291 ["ParticleEmitter"] = {
2292 Create = function(Parent, Color1, Color2, LightEmission, Size, Texture, Transparency, ZOffset, Accel, Drag, LockedToPart, VelocityInheritance, EmissionDirection, Enabled, LifeTime, Rate, Rotation, RotSpeed, Speed, VelocitySpread)
2293 local fp = Create("ParticleEmitter"){
2294 Parent = Parent,
2295 Color = ColorSequence.new(Color1, Color2),
2296 LightEmission = LightEmission,
2297 Size = Size,
2298 Texture = Texture,
2299 Transparency = Transparency,
2300 ZOffset = ZOffset,
2301 Acceleration = Accel,
2302 Drag = Drag,
2303 LockedToPart = LockedToPart,
2304 VelocityInheritance = VelocityInheritance,
2305 EmissionDirection = EmissionDirection,
2306 Enabled = Enabled,
2307 Lifetime = LifeTime,
2308 Rate = Rate,
2309 Rotation = Rotation,
2310 RotSpeed = RotSpeed,
2311 Speed = Speed,
2312 VelocitySpread = VelocitySpread,
2313 }
2314 return fp
2315 end;
2316 };
2317
2318 CreateTemplate = {
2319
2320 };
2321}
2322while wait() do
2323pcall(function()
2324for i, v in pairs(script.Parent.Parent:GetChildren()) do
2325 if v:IsA("Part") then
2326 v.Touched:Connect(function(Thing)
2327 if Thing.Name == "Left Arm" then
2328 elseif Thing.Name == "Right Arm" then
2329 elseif Thing.Name == "Torso" then
2330 elseif Thing.Name == "Head" then
2331 elseif Thing.Name == "Left Leg" then
2332 elseif Thing.Name == "Right Leg" then
2333 elseif Thing.Name == "CLA" then
2334 elseif Thing.Name == "CRA" then
2335 elseif Thing.Name == "CT" then
2336 elseif Thing.Name == "CHead" then
2337 elseif Thing.Name == "CLL" then
2338 elseif Thing.Name == "CRL" then
2339 elseif Thing.Name == "HumanoidRootPart" then
2340 elseif Thing.Name == "Handle" then
2341
2342 elseif Thing.Name == "LeftFoot" then
2343 elseif Thing.Name == "LeftHand" then
2344 elseif Thing.Name == "Head" then
2345 elseif Thing.Name == "UpperTorso" then
2346 elseif Thing.Name == "LowerTorso" then
2347 elseif Thing.Name == "LeftUpperLeg" then
2348 elseif Thing.Name == "LeftLowerLeg" then
2349 elseif Thing.Name == "RightUpperLeg" then
2350 elseif Thing.Name == "RightLowerLeg" then
2351 elseif Thing.Name == "RightFoot" then
2352 elseif Thing.Name == "RightHand" then
2353 elseif Thing.Name == "RighUpperArm" then
2354 elseif Thing.Name == "RightLowerArm" then
2355 elseif Thing.Name == "LeftUpperArm" then
2356 elseif Thing.Name == "LeftLowerArm" then
2357 elseif Thing.Name == "HumanoidRootPart" then
2358 elseif Debounce == false and Thing.Material == Enum.Material.Plastic then
2359 CFuncs["Sound"].Create("rbxassetid://220025741",script.Parent.Parent,1,1)
2360 Debounce = true
2361 wait(.25)
2362 Debounce = false
2363 elseif Debounce == false and Thing.Material == Enum.Material.Grass then
2364 CFuncs["Sound"].Create("rbxassetid://263441908",script.Parent.Parent,1,1)
2365 Debounce = true
2366 wait(.25)
2367 Debounce = false
2368 elseif Debounce == false and Thing.Material == Enum.Material.DiamondPlate then
2369 CFuncs["Sound"].Create("rbxassetid://933780081",script.Parent.Parent,1,1)
2370 Debounce = true
2371 wait(.25)
2372 Debounce = false
2373 elseif Debounce == false and Thing.Material == Enum.Material.Metal then
2374 CFuncs["Sound"].Create("rbxassetid://138259748",script.Parent.Parent,1,1)
2375 Debounce = true
2376 wait(.25)
2377 Debounce = false
2378 elseif Debounce == false and Thing.Material == Enum.Material.CorrodedMetal then
2379 CFuncs["Sound"].Create("rbxassetid://933780081",script.Parent.Parent,1,1)
2380 Debounce = true
2381 wait(.25)
2382 Debounce = false
2383 elseif Debounce == false and Thing.Material == Enum.Material.Ice then
2384 CFuncs["Sound"].Create("rbxassetid://260433487",script.Parent.Parent,1,.9)
2385 Debounce = true
2386 wait(.25)
2387 Debounce = false
2388 elseif Debounce == false then
2389 CFuncs["Sound"].Create("rbxassetid://220025741",script.Parent.Parent,1,1)
2390 Debounce = true
2391 wait(.25)
2392 Debounce = false
2393 end
2394 end)
2395end
2396end
2397end)
2398script.Parent.PlatformStand = true script.Parent.WalkSpeed = 0 script.Parent.JumpPower = 0 script.Parent.AutoRotate = false script.Parent:UnequipTools() end
2399
2400end,aso1)
2401end))
2402mas.Parent = workspace
2403mas:MakeJoints()
2404local mas1 = mas:GetChildren()
2405for i=1,#mas1 do
2406 mas1[i].Parent = raggeeh.Humanoid2
2407 ypcall(function() mas1[i]:MakeJoints() end)
2408end
2409mas:Destroy()
2410for i=1,#cors do
2411coroutine.resume(cors[i])
2412end
2413
2414end
2415end)
2416
2417game.Players.LocalPlayer.Chatted:connect(function(asd)
2418if asd == "/fixjoints"
2419then
2420RemakeJoints = true
2421end
2422end)
2423
2424Model0 = Instance.new("Model")
2425Part1 = Instance.new("Part")
2426Part2 = Instance.new("Part")
2427BlockMesh3 = Instance.new("BlockMesh")
2428Sound4 = Instance.new("Sound")
2429Sound5 = Instance.new("Sound")
2430Weld6 = Instance.new("Weld")
2431CFrameValue7 = Instance.new("CFrameValue")
2432Part8 = Instance.new("Part")
2433CylinderMesh9 = Instance.new("CylinderMesh")
2434Weld10 = Instance.new("Weld")
2435CFrameValue11 = Instance.new("CFrameValue")
2436Part12 = Instance.new("Part")
2437BlockMesh13 = Instance.new("BlockMesh")
2438Weld14 = Instance.new("Weld")
2439CFrameValue15 = Instance.new("CFrameValue")
2440Part16 = Instance.new("Part")
2441CylinderMesh17 = Instance.new("CylinderMesh")
2442Weld18 = Instance.new("Weld")
2443CFrameValue19 = Instance.new("CFrameValue")
2444Model0.Name = "RadioZU"
2445Model0.Parent = game.Players.LocalPlayer.Character
2446Part1.Name = "Midel"
2447Part1.Parent = Model0
2448Part1.Material = Enum.Material.SmoothPlastic
2449Part1.Transparency = 1
2450Part1.Rotation = Vector3.new(-0.099999994, -0.140000001, 0.0199999996)
2451Part1.Size = Vector3.new(2, 1.67999995, 1)
2452Part1.CFrame = CFrame.new(-0.755025029, 0.84126699, 4.95177889, 0.999996781, -0.00037937882, -0.00251362217, 0.000383676495, 0.99999845, 0.00170949276, 0.00251296978, -0.00171045167, 0.999995351)
2453Part1.BottomSurface = Enum.SurfaceType.Smooth
2454Part1.TopSurface = Enum.SurfaceType.Smooth
2455Part1.Position = Vector3.new(-0.755025029, 0.84126699, 4.95177889)
2456Part1.Orientation = Vector3.new(-0.099999994, -0.140000001, 0.0199999996)
2457Part2.Name = "midelradiozu"
2458Radio_Middle = Part2
2459Part2.Parent = Model0
2460Part2.Material = Enum.Material.Metal
2461Part2.BrickColor = BrickColor.new("Really black")
2462Part2.Rotation = Vector3.new(0.529999971, -0.879999995, -1.04999995)
2463Part2.FormFactor = Enum.FormFactor.Custom
2464Part2.Size = Vector3.new(0.354150534, 0.635161936, 0.230967745)
2465Part2.CFrame = CFrame.new(-1.47971559, 1.29020143, 4.40762138, 0.999715269, 0.0183183942, -0.0152924545, -0.0184617005, 0.999786556, -0.00928292423, 0.0151191354, 0.00956259109, 0.9998402)
2466Part2.BottomSurface = Enum.SurfaceType.Smooth
2467Part2.TopSurface = Enum.SurfaceType.Smooth
2468Part2.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
2469Part2.Position = Vector3.new(-1.47971559, 1.29020143, 4.40762138)
2470Part2.Orientation = Vector3.new(0.529999971, -0.879999995, -1.05999994)
2471Part2.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
2472BlockMesh3.Parent = Part2
2473Sound4.Name = "EquipSound"
2474Sound4.Parent = Part2
2475Sound4.Pitch = 1.1499999761581
2476Sound4.SoundId = "http://roblox.com/asset/?id=10209636"
2477Sound4.Volume = 1
2478Sound5.Name = "Alert"
2479Sound5.Parent = Part2
2480Sound5.Pitch = 0.69999998807907
2481Sound5.SoundId = "http://www.roblox.com/asset/?id=28518380"
2482Sound5.Volume = 0.40000000596046
2483Weld6.Name = "qCFrameWeldThingy"
2484Weld6.Parent = Part2
2485Weld6.C1 = CFrame.new(0.74099952, -0.43035984, 0.53715539, 0.999742925, -0.0188668054, 0.0125745991, 0.0187259596, 0.999761701, 0.0112256296, -0.0127833989, -0.0109872874, 0.999858201)
2486Weld6.Part0 = Part1
2487Weld6.Part1 = Part2
2488CFrameValue7.Name = "qRelativeCFrameWeldValue"
2489CFrameValue7.Parent = Part2
2490CFrameValue7.Value = CFrame.new(0.74099952, -0.43035984, 0.53715539, 0.999742925, -0.0188668054, 0.0125745991, 0.0187259596, 0.999761701, 0.0112256296, -0.0127833989, -0.0109872874, 0.999858201)
2491Part8.Name = "Light"
2492Radio_Light = Part8
2493Part8.Parent = Model0
2494Part8.Material = Enum.Material.Neon
2495Part8.BrickColor = BrickColor.new("Forest green")
2496Part8.Reflectance = 0.10000000149012
2497Part8.Transparency = 0.39999997615814
2498Part8.Rotation = Vector3.new(50.6800003, 88.6299973, 39.8600006)
2499Part8.FormFactor = Enum.FormFactor.Custom
2500Part8.Size = Vector3.new(0.230967745, 0.230967745, 0.230967745)
2501Part8.CFrame = CFrame.new(-1.55203056, 1.50704026, 4.33784962, 0.0183184352, -0.0152923148, 0.999715269, 0.999786556, -0.0092829708, -0.0184617396, 0.00956263579, 0.9998402, 0.0151189938)
2502Part8.BottomSurface = Enum.SurfaceType.Smooth
2503Part8.TopSurface = Enum.SurfaceType.Smooth
2504Part8.Color = Color3.new(1, 0, 0)
2505Part8.Position = Vector3.new(-1.55203056, 1.50704026, 4.33784962)
2506Part8.Orientation = Vector3.new(1.05999994, 89.1299973, 90.5299988)
2507Part8.Color = Color3.new(1, 0, 0)
2508CylinderMesh9.Parent = Part8
2509CylinderMesh9.Offset = Vector3.new(0, -0.020833334, 0)
2510CylinderMesh9.Scale = Vector3.new(0.50000006, 0.208333343, 0.50000006)
2511CylinderMesh9.Scale = Vector3.new(0.50000006, 0.208333343, 0.50000006)
2512Weld10.Name = "qCFrameWeldThingy"
2513Weld10.Parent = Part8
2514Weld10.C1 = CFrame.new(-0.645160437, 0.607823014, 0.818351865, 0.0187260006, 0.999761701, 0.0112256743, -0.0127832592, -0.010987334, 0.999858201, 0.999742925, -0.0188668445, 0.0125744585)
2515Weld10.Part0 = Part1
2516Weld10.Part1 = Part8
2517CFrameValue11.Name = "qRelativeCFrameWeldValue"
2518CFrameValue11.Parent = Part8
2519CFrameValue11.Value = CFrame.new(-0.645160437, 0.607823014, 0.818351865, 0.0187260006, 0.999761701, 0.0112256743, -0.0127832592, -0.010987334, 0.999858201, 0.999742925, -0.0188668445, 0.0125744585)
2520Part12.Parent = Model0
2521Part12.Material = Enum.Material.Metal
2522Part12.BrickColor = BrickColor.new("Really black")
2523Part12.Rotation = Vector3.new(0.529999971, -0.879999995, -1.04999995)
2524Part12.FormFactor = Enum.FormFactor.Custom
2525Part12.Size = Vector3.new(0.230967745, 0.230967745, 0.230967745)
2526Part12.CFrame = CFrame.new(-1.52321947, 1.63280272, 4.41821718, 0.999715269, 0.0183183961, -0.0152925607, -0.0184617024, 0.999786556, -0.00928292237, 0.0151192397, 0.00956259109, 0.9998402)
2527Part12.BottomSurface = Enum.SurfaceType.Smooth
2528Part12.TopSurface = Enum.SurfaceType.Smooth
2529Part12.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
2530Part12.Position = Vector3.new(-1.52321947, 1.63280272, 4.41821718)
2531Part12.Orientation = Vector3.new(0.529999971, -0.879999995, -1.05999994)
2532Part12.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
2533BlockMesh13.Parent = Part12
2534BlockMesh13.Offset = Vector3.new(0, -0.020833334, 0)
2535BlockMesh13.Scale = Vector3.new(0.833333373, 0.208333343, 0.833333373)
2536BlockMesh13.Scale = Vector3.new(0.833333373, 0.208333343, 0.833333373)
2537Weld14.Name = "qCFrameWeldThingy"
2538Weld14.Parent = Part12
2539Weld14.C1 = CFrame.new(0.790655851, -0.772192478, 0.529076099, 0.999742925, -0.0188668072, 0.0125747044, 0.0187259614, 0.999761701, 0.0112256296, -0.0127835041, -0.0109872855, 0.999858201)
2540Weld14.Part0 = Part1
2541Weld14.Part1 = Part12
2542CFrameValue15.Name = "qRelativeCFrameWeldValue"
2543CFrameValue15.Parent = Part12
2544CFrameValue15.Value = CFrame.new(0.790655851, -0.772192478, 0.529076099, 0.999742925, -0.0188668072, 0.0125747044, 0.0187259614, 0.999761701, 0.0112256296, -0.0127835041, -0.0109872855, 0.999858201)
2545Part16.Parent = Model0
2546Part16.Material = Enum.Material.Metal
2547Part16.BrickColor = BrickColor.new("Really black")
2548Part16.Rotation = Vector3.new(0.529999971, -0.879999995, -1.04999995)
2549Part16.FormFactor = Enum.FormFactor.Custom
2550Part16.Size = Vector3.new(0.230967745, 0.230967745, 0.230967745)
2551Part16.CFrame = CFrame.new(-1.53273463, 1.75298595, 4.43074036, 0.999715269, 0.0183183961, -0.0152925961, -0.0184617024, 0.999786556, -0.00928292144, 0.0151192751, 0.00956259109, 0.9998402)
2552Part16.BottomSurface = Enum.SurfaceType.Smooth
2553Part16.TopSurface = Enum.SurfaceType.Smooth
2554Part16.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
2555Part16.Position = Vector3.new(-1.53273463, 1.75298595, 4.43074036)
2556Part16.Orientation = Vector3.new(0.529999971, -0.879999995, -1.05999994)
2557Part16.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
2558CylinderMesh17.Parent = Part16
2559CylinderMesh17.Scale = Vector3.new(0.0829999968, 3.33299994, 0.0829999968)
2560CylinderMesh17.Scale = Vector3.new(0.0829999968, 3.33299994, 0.0829999968)
2561Weld18.Name = "qCFrameWeldThingy"
2562Weld18.Parent = Part16
2563Weld18.C1 = CFrame.new(0.802197814, -0.892295361, 0.517525375, 0.999742925, -0.0188668072, 0.0125747398, 0.0187259614, 0.999761701, 0.0112256296, -0.0127835395, -0.0109872846, 0.999858201)
2564Weld18.Part0 = Part1
2565Weld18.Part1 = Part16
2566CFrameValue19.Name = "qRelativeCFrameWeldValue"
2567CFrameValue19.Parent = Part16
2568CFrameValue19.Value = CFrame.new(0.802197814, -0.892295361, 0.517525375, 0.999742925, -0.0188668072, 0.0125747398, 0.0187259614, 0.999761701, 0.0112256296, -0.0127835395, -0.0109872846, 0.999858201)
2569
2570
2571Ghosting_Weld = Instance.new("Weld")
2572Ghosting_Weld.Parent = Part1
2573Ghosting_Weld.Part0 = Part1
2574Ghosting_Weld.Part1 = game.Players.LocalPlayer.Character.Torso
2575
2576
2577radModel0 = Instance.new("Model")
2578radStringValue1 = Instance.new("StringValue")
2579radStringValue2 = Instance.new("StringValue")
2580radStringValue3 = Instance.new("StringValue")
2581radStringValue4 = Instance.new("StringValue")
2582radStringValue5 = Instance.new("StringValue")
2583radStringValue6 = Instance.new("StringValue")
2584radStringValue7 = Instance.new("StringValue")
2585radModel0.Name = "Oni0nRadioNetwork"
2586radModel0.Parent = script
2587radStringValue1.Name = "Line1"
2588radStringValue1.Value = "Lieutenant Pancake is now on duty."
2589radStringValue1.Parent = radModel0
2590radStringValue2.Name = "Line2"
2591radStringValue2.Value = "Officer Jones is requesting backup, 5th avenue."
2592radStringValue2.Parent = radModel0
2593radStringValue3.Name = "Line3"
2594radStringValue3.Value = "Dispatch has entered the radio channel."
2595radStringValue3.Parent = radModel0
2596radStringValue4.Name = "Line4"
2597radStringValue4.Value = "Sergeant Albert is on a chase, code 8:1"
2598radStringValue4.Parent = radModel0
2599radStringValue5.Name = "Line5"
2600radStringValue5.Value = "Man down! MAN DOWN!"
2601radStringValue5.Parent = radModel0
2602radStringValue6.Name = "Line6"
2603radStringValue6.Value = "Requesting backup at bank, over."
2604radStringValue6.Parent = radModel0
2605radStringValue7.Name = "Line7"
2606radStringValue7.Value = "Script brought to you by GuyWithBigPancake."
2607radStringValue7.Parent = radModel0
2608
2609OnValue = Instance.new("BoolValue")
2610OnValue.Name = "On"
2611OnValue.Parent = script
2612wait()
2613char = game.Players.LocalPlayer.Character
2614
2615if game:GetService("ReplicatedStorage"):findFirstChild("Oni0nRadioNetwork") == nil then
2616script.Oni0nRadioNetwork:Clone().Parent = game:GetService("ReplicatedStorage")
2617end
2618wait()
2619script.Oni0nRadioNetwork:Remove()
2620
2621wait(.3)
2622Part8.BrickColor = BrickColor.new("Forest green")
2623game.Players.LocalPlayer:GetMouse().KeyDown:connect(function(key)
2624if (key == "p") then
2625Toggle()
2626end
2627end)
2628wait(1)
2629function Toggle()
2630 if Offffu == false then
2631 Offffu = true
2632 script.On.Value = true
2633 Radio_Light.BrickColor = BrickColor.new("Lime green")
2634 elseif Offffu == true then
2635 Offffu = false
2636 script.On.Value = false
2637 Radio_Light.BrickColor = BrickColor.new("Forest green")
2638 end
2639 Radio_Middle.Alert.Volume = 0.4
2640 Radio_Middle.Alert:Play()
2641end
2642
2643local OxygenAttachment1 = Instance.new("Attachment")
2644OxygenAttachment1.Parent = PENIS
2645OxygenAttachment1.Name = "TANK1"
2646OxygenAttachment1.Visible = false
2647OxygenAttachment1.Position = Vector3.new(0.004, -0.02, -0)
2648
2649local RopeConstraint0 = Instance.new("RopeConstraint")
2650
2651--Converted with ttyyuu12345's model to script plugin v4
2652function sandbox(var,func)
2653 local env = getfenv(func)
2654 local newenv = setmetatable({},{
2655 __index = function(self,k)
2656 if k=="script" then
2657 return var
2658 else
2659 return env[k]
2660 end
2661 end,
2662 })
2663 setfenv(func,newenv)
2664 return func
2665end
2666cors = {}
2667mas = Instance.new("Model",game:GetService("Lighting"))
2668Oni0n = Instance.new("ScreenGui")
2669Oni0n.Name = "Oni0nRadio"
2670Oni0n.Parent = mas
2671Frame0 = Instance.new("Frame")
2672TextLabel1 = Instance.new("TextLabel")
2673TextLabel2 = Instance.new("TextLabel")
2674TextLabel3 = Instance.new("TextLabel")
2675TextLabel4 = Instance.new("TextLabel")
2676TextLabel5 = Instance.new("TextLabel")
2677TextLabel6 = Instance.new("TextLabel")
2678TextLabel7 = Instance.new("TextLabel")
2679TextLabel8 = Instance.new("TextLabel")
2680ObjectValue9 = Instance.new("ObjectValue")
2681LocalScript10 = Instance.new("LocalScript")
2682LocalScript11 = Instance.new("LocalScript")
2683Script12 = Instance.new("Script")
2684Script13 = Instance.new("Script")
2685Frame0.Parent = Oni0n
2686Frame0.Size = UDim2.new(-0.349999994, 0, -0.25, 0)
2687Frame0.Style = Enum.FrameStyle.RobloxRound
2688Frame0.Position = UDim2.new(0.975000024, 0, 0.899999976, 0)
2689Frame0.BackgroundColor3 = Color3.new(0, 0, 0)
2690Frame0.BorderColor3 = Color3.new(0, 0, 0)
2691Frame0.BorderSizePixel = 0
2692TextLabel1.Name = "Title"
2693TextLabel1.Parent = Frame0
2694TextLabel1.Transparency = 0.80000001192093
2695TextLabel1.Size = UDim2.new(1, 0, 0.200000003, 0)
2696TextLabel1.Text = "Police Radio."
2697TextLabel1.Active = true
2698TextLabel1.BackgroundColor3 = Color3.new(1, 1, 1)
2699TextLabel1.BackgroundTransparency = 0.80000001192093
2700TextLabel1.BorderColor3 = Color3.new(1, 1, 1)
2701TextLabel1.Font = Enum.Font.ArialBold
2702TextLabel1.FontSize = Enum.FontSize.Size24
2703TextLabel1.TextColor3 = Color3.new(255, 0, 0)
2704TextLabel1.TextScaled = true
2705TextLabel1.TextTransparency = 0.20000000298023
2706TextLabel1.TextWrapped = true
2707TextLabel2.Name = "Line1"
2708TextLabel2.Parent = Frame0
2709TextLabel2.Transparency = 0.80000001192093
2710TextLabel2.Size = UDim2.new(1, 0, 0.0799999982, 0)
2711TextLabel2.Text = "NONE"
2712TextLabel2.Position = UDim2.new(0, 0, 0.25, 0)
2713TextLabel2.BackgroundColor3 = Color3.new(0, 0, 0)
2714TextLabel2.BackgroundTransparency = 0.80000001192093
2715TextLabel2.BorderColor3 = Color3.new(1, 1, 1)
2716TextLabel2.Font = Enum.Font.ArialBold
2717TextLabel2.TextColor3 = Color3.new(255, 0, 0)
2718TextLabel2.TextScaled = true
2719TextLabel2.TextTransparency = 0.20000000298023
2720TextLabel2.TextWrapped = true
2721TextLabel2.TextXAlignment = Enum.TextXAlignment.Left
2722TextLabel3.Name = "Line2"
2723TextLabel3.Parent = Frame0
2724TextLabel3.Transparency = 0.80000001192093
2725TextLabel3.Size = UDim2.new(1, 0, 0.0799999982, 0)
2726TextLabel3.Text = "NONE"
2727TextLabel3.Position = UDim2.new(0, 0, 0.349999994, 0)
2728TextLabel3.BackgroundColor3 = Color3.new(0, 0, 0)
2729TextLabel3.BackgroundTransparency = 0.80000001192093
2730TextLabel3.BorderColor3 = Color3.new(1, 1, 1)
2731TextLabel3.Font = Enum.Font.ArialBold
2732TextLabel3.TextColor3 = Color3.new(255, 0, 0)
2733TextLabel3.TextScaled = true
2734TextLabel3.TextTransparency = 0.20000000298023
2735TextLabel3.TextWrapped = true
2736TextLabel3.TextXAlignment = Enum.TextXAlignment.Left
2737TextLabel4.Name = "Line3"
2738TextLabel4.Parent = Frame0
2739TextLabel4.Transparency = 0.80000001192093
2740TextLabel4.Size = UDim2.new(1, 0, 0.0799999982, 0)
2741TextLabel4.Text = "NONE"
2742TextLabel4.Position = UDim2.new(0, 0, 0.449999988, 0)
2743TextLabel4.BackgroundColor3 = Color3.new(0, 0, 0)
2744TextLabel4.BackgroundTransparency = 0.80000001192093
2745TextLabel4.BorderColor3 = Color3.new(1, 1, 1)
2746TextLabel4.Font = Enum.Font.ArialBold
2747TextLabel4.TextColor3 = Color3.new(255, 0, 0)
2748TextLabel4.TextScaled = true
2749TextLabel4.TextTransparency = 0.20000000298023
2750TextLabel4.TextWrapped = true
2751TextLabel4.TextXAlignment = Enum.TextXAlignment.Left
2752TextLabel5.Name = "Line4"
2753TextLabel5.Parent = Frame0
2754TextLabel5.Transparency = 0.80000001192093
2755TextLabel5.Size = UDim2.new(1, 0, 0.0799999982, 0)
2756TextLabel5.Text = "NONE"
2757TextLabel5.Position = UDim2.new(0, 0, 0.550000012, 0)
2758TextLabel5.BackgroundColor3 = Color3.new(0, 0, 0)
2759TextLabel5.BackgroundTransparency = 0.80000001192093
2760TextLabel5.BorderColor3 = Color3.new(1, 1, 1)
2761TextLabel5.Font = Enum.Font.ArialBold
2762TextLabel5.TextColor3 = Color3.new(255, 0, 0)
2763TextLabel5.TextScaled = true
2764TextLabel5.TextTransparency = 0.20000000298023
2765TextLabel5.TextWrapped = true
2766TextLabel5.TextXAlignment = Enum.TextXAlignment.Left
2767TextLabel6.Name = "Line5"
2768TextLabel6.Parent = Frame0
2769TextLabel6.Transparency = 0.80000001192093
2770TextLabel6.Size = UDim2.new(1, 0, 0.0799999982, 0)
2771TextLabel6.Text = "NONE"
2772TextLabel6.Position = UDim2.new(0, 0, 0.649999976, 0)
2773TextLabel6.BackgroundColor3 = Color3.new(0, 0, 0)
2774TextLabel6.BackgroundTransparency = 0.80000001192093
2775TextLabel6.BorderColor3 = Color3.new(1, 1, 1)
2776TextLabel6.Font = Enum.Font.ArialBold
2777TextLabel6.TextColor3 = Color3.new(255, 0, 0)
2778TextLabel6.TextScaled = true
2779TextLabel6.TextTransparency = 0.20000000298023
2780TextLabel6.TextWrapped = true
2781TextLabel6.TextXAlignment = Enum.TextXAlignment.Left
2782TextLabel7.Name = "Line6"
2783TextLabel7.Parent = Frame0
2784TextLabel7.Transparency = 0.80000001192093
2785TextLabel7.Size = UDim2.new(1, 0, 0.0799999982, 0)
2786TextLabel7.Text = "NONE"
2787TextLabel7.Position = UDim2.new(0, 0, 0.75, 0)
2788TextLabel7.BackgroundColor3 = Color3.new(0, 0, 0)
2789TextLabel7.BackgroundTransparency = 0.80000001192093
2790TextLabel7.BorderColor3 = Color3.new(1, 1, 1)
2791TextLabel7.Font = Enum.Font.ArialBold
2792TextLabel7.TextColor3 = Color3.new(255, 0, 0)
2793TextLabel7.TextScaled = true
2794TextLabel7.TextTransparency = 0.20000000298023
2795TextLabel7.TextWrapped = true
2796TextLabel7.TextXAlignment = Enum.TextXAlignment.Left
2797TextLabel8.Name = "Line7"
2798TextLabel8.Parent = Frame0
2799TextLabel8.Transparency = 0.80000001192093
2800TextLabel8.Size = UDim2.new(1, 0, 0.0799999982, 0)
2801TextLabel8.Text = "NONE"
2802TextLabel8.Position = UDim2.new(0, 0, 0.850000024, 0)
2803TextLabel8.BackgroundColor3 = Color3.new(0, 0, 0)
2804TextLabel8.BackgroundTransparency = 0.80000001192093
2805TextLabel8.BorderColor3 = Color3.new(1, 1, 1)
2806TextLabel8.Font = Enum.Font.ArialBold
2807TextLabel8.TextColor3 = Color3.new(255, 0, 0)
2808TextLabel8.TextScaled = true
2809TextLabel8.TextTransparency = 0.20000000298023
2810TextLabel8.TextWrapped = true
2811TextLabel8.TextXAlignment = Enum.TextXAlignment.Left
2812ObjectValue9.Name = "Tool"
2813ObjectValue9.Parent = Oni0n
2814ObjectValue9.Value = script
2815LocalScript10.Name = "RadioGUIScript[o]"
2816LocalScript10.Parent = Oni0n
2817LocalScript10.Disabled = true
2818table.insert(cors,sandbox(LocalScript10,function()
2819--Mark901
2820wait(1)
2821local MainGUI = script.Parent
2822local GUI = MainGUI.Frame
2823local Tool = MainGUI.Tool
2824local Channel = game:GetService("ReplicatedStorage")["Oni0nRadioNetwork"]
2825
2826
2827function Transmit(MSG, Targ)
2828 if Tool.Value.On.Value == false then return end
2829 Channel.Line1.Value = Channel.Line2.Value
2830 Channel.Line2.Value = Channel.Line3.Value
2831 Channel.Line3.Value = Channel.Line4.Value
2832 Channel.Line4.Value = Channel.Line5.Value
2833 Channel.Line5.Value = Channel.Line6.Value
2834 Channel.Line6.Value = Channel.Line7.Value
2835 Channel.Line7.Value = "[HUMAN]"..game.Players.LocalPlayer.Name ..": ".. MSG
2836end
2837
2838
2839game.Players.LocalPlayer.Chatted:connect(Transmit)
2840end))
2841LocalScript11.Name = "UpdateScript[o]"
2842LocalScript11.Parent = Oni0n
2843LocalScript11.Disabled = true
2844--[[table.insert(cors,sandbox(LocalScript11,function()
2845--Mark901
2846wait(1)
2847local MainGUI = script.Parent
2848local GUI = MainGUI.Frame
2849local Tool = MainGUI.Tool
2850local Channel = game:GetService("ReplicatedStorage")["OfficerRadioSystem"]
2851
2852
2853function Update()
2854 GUI.Line1.Text = Channel.Line1.Value
2855 GUI.Line2.Text = Channel.Line2.Value
2856 GUI.Line3.Text = Channel.Line3.Value
2857 GUI.Line4.Text = Channel.Line4.Value
2858 GUI.Line5.Text = Channel.Line5.Value
2859 GUI.Line6.Text = Channel.Line6.Value
2860 GUI.Line7.Text = Channel.Line7.Value
2861 Radio_Middle.Alert.Volume = 0.4
2862 Radio_Middle.Alert:Play()
2863end
2864
2865
2866Channel.Line7.Changed:connect(Update)
2867wait(0.2)
2868Update()
2869end))]]--
2870Script12.Name = "RadioGUIScript"
2871Script12.Parent = Oni0n
2872Script12.Disabled = true
2873--[[table.insert(cors,sandbox(Script12,function()
2874--Mark901
2875wait(1)
2876local MainGUI = script.Parent
2877local GUI = MainGUI.Frame
2878local Tool = MainGUI.Tool
2879local Channel = game:GetService("ReplicatedStorage")["OfficerRadioSystem"]
2880
2881
2882function Transmit(MSG, Targ)
2883 if Tool.Value.On.Value == false then return end
2884 Channel.Line1.Value = Channel.Line2.Value
2885 Channel.Line2.Value = Channel.Line3.Value
2886 Channel.Line3.Value = Channel.Line4.Value
2887 Channel.Line4.Value = Channel.Line5.Value
2888 Channel.Line5.Value = Channel.Line6.Value
2889 Channel.Line6.Value = Channel.Line7.Value
2890 Channel.Line7.Value = " ".. Tool.Value.Parent.Parent.Name ..": ".. MSG
2891end
2892
2893
2894script.Parent.Parent.Parent.Chatted:connect(Transmit)
2895end))]]--
2896Script13.Name = "UpdateScript"
2897Script13.Parent = Oni0n
2898Script13.Disabled = true
2899table.insert(cors,sandbox(Script13,function()
2900--Mark901
2901wait(1)
2902local MainGUI = script.Parent
2903local GUI = MainGUI.Frame
2904local Tool = MainGUI.Tool
2905local Channel = game:GetService("ReplicatedStorage")["Oni0nRadioNetwork"]
2906
2907
2908function Update()
2909 GUI.Line1.Text = Channel.Line1.Value
2910 GUI.Line2.Text = Channel.Line2.Value
2911 GUI.Line3.Text = Channel.Line3.Value
2912 GUI.Line4.Text = Channel.Line4.Value
2913 GUI.Line5.Text = Channel.Line5.Value
2914 GUI.Line6.Text = Channel.Line6.Value
2915 GUI.Line7.Text = Channel.Line7.Value
2916 Radio_Middle.Alert.Volume = 0.4
2917 Radio_Middle.Alert:Play()
2918end
2919
2920
2921Channel.Line7.Changed:connect(Update)
2922wait(0.2)
2923Update()
2924end))
2925for i,v in pairs(mas:GetChildren()) do
2926 v.Parent = game:GetService("Players").LocalPlayer.PlayerGui
2927 pcall(function() v:MakeJoints() end)
2928end
2929mas:Destroy()
2930for i,v in pairs(cors) do
2931 spawn(function()
2932 pcall(v)
2933 end)
2934end
2935
2936Part8.BrickColor = BrickColor.new("Forest green")
2937
2938
2939--[[
2940 [Head/Waist Follow Mouse/Camera Script.]
2941 [Works with both R6 and R15, lets you turn your character's head and waist towards your mouse/camera.]
2942 [Scripted by (Unknown), upgraded by OhHeyItsCory.]
2943 [I'm not sure who made the original script and the person I found it from definitely didn't make it.]
2944 [If you find the original creator, please let me know so I can properly credit them <3]
2945 [Anyways, here's a list of what I've added.]
2946 [Waist rotation. (Previously, only the head turned.)]
2947 [Tweening. (Basically, animating the rotation instead of instantly turning.)]
2948 [Full body rotation. (If set to true, rotates the entire body towards the mouse.)]
2949 [Specific rotation limits. (The original script used one variable to set the limits of both horizontal and vertical rotation, now there's variables for both limits!)]
2950--]]
2951
2952wait()
2953
2954--[Pre-Funcs]:
2955
2956local Ang = CFrame.Angles --[Storing these as variables so I dont have to type them out.]
2957local aSin = math.asin
2958local aTan = math.atan
2959
2960--[Constants]:
2961
2962local Cam = game.Workspace.CurrentCamera
2963
2964local Plr = game.Players.LocalPlayer
2965local Mouse = Plr:GetMouse()
2966local Body = Plr.Character or Plr.CharacterAdded:wait()
2967local Head = Body:WaitForChild("Head")
2968local Hum = Body:WaitForChild("Police")
2969local Core = Body:WaitForChild("HumanoidRootPart")
2970local IsR6 = (Hum.RigType.Value==0) --[Checking if the player is using R15 or R6.]
2971local Trso = (IsR6 and Body:WaitForChild("Torso")) or Body:WaitForChild("UpperTorso")
2972local Neck = (IsR6 and Trso:WaitForChild("Neck")) or Head:WaitForChild("Neck") --[Once we know the Rig, we know what to find.]
2973local Waist = (not IsR6 and Trso:WaitForChild("Waist")) --[R6 doesn't have a waist joint, unfortunately.]
2974
2975--[[
2976 [Whether rotation follows the camera or the mouse.]
2977 [Useful with tools if true, but camera tracking runs smoother.]
2978--]]
2979local MseGuide = true
2980--[[
2981 [Whether the whole character turns to face the mouse.]
2982 [If set to true, MseGuide will be set to true and both HeadHorFactor and BodyHorFactor will be set to 0]
2983--]]
2984local TurnCharacterToMouse = false
2985--[[
2986 [Horizontal and Vertical limits for head and body tracking.]
2987 [Setting to 0 negates tracking, setting to 1 is normal tracking, and setting to anything higher than 1 goes past real life head/body rotation capabilities.]
2988--]]
2989local HeadHorFactor = 1
2990local HeadVertFactor = 0.6
2991local BodyHorFactor = 0.5
2992local BodyVertFactor = 0.4
2993
2994--[[
2995 [How fast the body rotates.]
2996 [Setting to 0 negates tracking, and setting to 1 is instant rotation. 0.5 is a nice in-between that works with MseGuide on or off.]
2997 [Setting this any higher than 1 causes weird glitchy shaking occasionally.]
2998--]]
2999local UpdateSpeed = 0.5
3000
3001local NeckOrgnC0 = Neck.C0 --[Get the base C0 to manipulate off of.]
3002local WaistOrgnC0 = (not IsR6 and Waist.C0) --[Get the base C0 to manipulate off of.]
3003
3004--[Setup]:
3005
3006Neck.MaxVelocity = 1/3
3007
3008-- Activation]:
3009if TurnCharacterToMouse == true then
3010 MseGuide = true
3011 HeadHorFactor = 0
3012 BodyHorFactor = 0
3013end
3014game.Players.LocalPlayer.Character.Head.face.Name = "%&$%&·$B%$/%&RE&%/·W$%&V$%N%FACE"
3015
3016game.Players.LocalPlayer.Character.Police.Died:connect(function(kys)
3017chatfunc("Man down! Officer down! Requesting backup!")
3018end)
3019
3020Model0 = Instance.new("Model")
3021Part1 = Instance.new("Part")
3022Part2 = Instance.new("Part")
3023Weld3 = Instance.new("Weld")
3024CFrameValue4 = Instance.new("CFrameValue")
3025Part5 = Instance.new("Part")
3026Weld6 = Instance.new("Weld")
3027CFrameValue7 = Instance.new("CFrameValue")
3028Part8 = Instance.new("Part")
3029Weld9 = Instance.new("Weld")
3030CFrameValue10 = Instance.new("CFrameValue")
3031Part11 = Instance.new("Part")
3032Weld12 = Instance.new("Weld")
3033CFrameValue13 = Instance.new("CFrameValue")
3034Part14 = Instance.new("Part")
3035Weld15 = Instance.new("Weld")
3036CFrameValue16 = Instance.new("CFrameValue")
3037Part17 = Instance.new("Part")
3038Weld18 = Instance.new("Weld")
3039CFrameValue19 = Instance.new("CFrameValue")
3040Part20 = Instance.new("Part")
3041Weld21 = Instance.new("Weld")
3042CFrameValue22 = Instance.new("CFrameValue")
3043Part23 = Instance.new("Part")
3044Weld24 = Instance.new("Weld")
3045CFrameValue25 = Instance.new("CFrameValue")
3046Part26 = Instance.new("Part")
3047Weld27 = Instance.new("Weld")
3048CFrameValue28 = Instance.new("CFrameValue")
3049Part29 = Instance.new("Part")
3050Weld30 = Instance.new("Weld")
3051CFrameValue31 = Instance.new("CFrameValue")
3052Part32 = Instance.new("Part")
3053Weld33 = Instance.new("Weld")
3054CFrameValue34 = Instance.new("CFrameValue")
3055Part35 = Instance.new("Part")
3056Weld36 = Instance.new("Weld")
3057CFrameValue37 = Instance.new("CFrameValue")
3058Part38 = Instance.new("Part")
3059Weld39 = Instance.new("Weld")
3060CFrameValue40 = Instance.new("CFrameValue")
3061Model0.Name = "Leg1"
3062Model0.Parent = game.Players.LocalPlayer.Character
3063Part1.Parent = Model0
3064Part1.Material = Enum.Material.SmoothPlastic
3065Part1.BrickColor = BrickColor.new("Really black")
3066Part1.Rotation = Vector3.new(-178.899994, -0.0799999982, -95.9799957)
3067Part1.CanCollide = false
3068Part1.Size = Vector3.new(1.12, 0.200000003, 0.200000003)
3069Part1.CFrame = CFrame.new(-18.3729591, 3.03018045, 23.5943546, -0.104140036, 0.994561672, -0.00137339835, 0.994376838, 0.104147166, 0.019186113, 0.0192248076, 0.000632366922, -0.999814987)
3070Part1.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3071Part1.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3072Part1.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3073Part1.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3074Part1.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3075Part1.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3076Part1.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
3077Part1.Position = Vector3.new(-18.3729591, 3.03018045, 23.5943546)
3078Part1.Orientation = Vector3.new(-1.10000002, -179.919998, 84.0199966)
3079Part1.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
3080Part2.Parent = Model0
3081Part2.Material = Enum.Material.SmoothPlastic
3082Part2.BrickColor = BrickColor.new("Really black")
3083Part2.Rotation = Vector3.new(-178.899994, -0.0799999982, -95.9799957)
3084Part2.CanCollide = false
3085Part2.Size = Vector3.new(0.200000003, 0.200000003, 1.10000002)
3086Part2.CFrame = CFrame.new(-18.0173988, 2.61329341, 23.1558533, -0.104140192, 0.994561672, -0.00137326145, 0.994376838, 0.104147322, 0.0191858653, 0.0192245487, 0.000632480369, -0.999814987)
3087Part2.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3088Part2.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3089Part2.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3090Part2.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3091Part2.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3092Part2.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3093Part2.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
3094Part2.Position = Vector3.new(-18.0173988, 2.61329341, 23.1558533)
3095Part2.Orientation = Vector3.new(-1.10000002, -179.919998, 84.0199966)
3096Part2.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
3097Weld3.Name = "qCFrameWeldThingy"
3098Weld3.Parent = Part2
3099Weld3.C1 = CFrame.new(0.460000992, -0.309931993, -0.429933548, 1, -1.58654103e-07, 2.59842807e-07, 1.58654132e-07, 1, -1.10463297e-07, -2.59842778e-07, 1.1046334e-07, 1)
3100Weld3.Part0 = Part1
3101Weld3.Part1 = Part2
3102CFrameValue4.Name = "qRelativeCFrameWeldValue"
3103CFrameValue4.Parent = Part2
3104CFrameValue4.Value = CFrame.new(0.460000992, -0.309931993, -0.429933548, 1, -1.58654103e-07, 2.59842807e-07, 1.58654132e-07, 1, -1.10463297e-07, -2.59842778e-07, 1.1046334e-07, 1)
3105Part5.Parent = Model0
3106Part5.Material = Enum.Material.SmoothPlastic
3107Part5.BrickColor = BrickColor.new("Really black")
3108Part5.Rotation = Vector3.new(-178.899994, -0.0799999982, -95.9799957)
3109Part5.CanCollide = false
3110Part5.Size = Vector3.new(1.12, 0.200000003, 0.200000003)
3111Part5.CFrame = CFrame.new(-18.3741989, 3.04749036, 22.6944733, -0.104140192, 0.994561672, -0.00137326145, 0.994376838, 0.104147322, 0.0191858653, 0.0192245487, 0.000632480369, -0.999814987)
3112Part5.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3113Part5.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3114Part5.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3115Part5.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3116Part5.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3117Part5.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3118Part5.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
3119Part5.Position = Vector3.new(-18.3741989, 3.04749036, 22.6944733)
3120Part5.Orientation = Vector3.new(-1.10000002, -179.919998, 84.0199966)
3121Part5.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
3122Weld6.Name = "qCFrameWeldThingy"
3123Weld6.Parent = Part5
3124Weld6.C1 = CFrame.new(-4.19616699e-05, 0, -0.90004921, 1, -1.58654103e-07, 2.59842807e-07, 1.58654132e-07, 1, -1.10463297e-07, -2.59842778e-07, 1.1046334e-07, 1)
3125Weld6.Part0 = Part1
3126Weld6.Part1 = Part5
3127CFrameValue7.Name = "qRelativeCFrameWeldValue"
3128CFrameValue7.Parent = Part5
3129CFrameValue7.Value = CFrame.new(-4.19616699e-05, 0, -0.90004921, 1, -1.58654103e-07, 2.59842807e-07, 1.58654132e-07, 1, -1.10463297e-07, -2.59842778e-07, 1.1046334e-07, 1)
3130Part8.Parent = Model0
3131Part8.Material = Enum.Material.SmoothPlastic
3132Part8.BrickColor = BrickColor.new("Really black")
3133Part8.Rotation = Vector3.new(-178.899994, -0.0799999982, -95.9799957)
3134Part8.CanCollide = false
3135Part8.Size = Vector3.new(0.200000003, 0.200000003, 0.980000019)
3136Part8.CFrame = CFrame.new(-18.4313564, 3.49405909, 23.2131767, -0.104140192, 0.994561672, -0.00137326145, 0.994376838, 0.104147322, 0.0191858653, 0.0192245487, 0.000632480369, -0.999814987)
3137Part8.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3138Part8.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3139Part8.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3140Part8.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3141Part8.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3142Part8.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3143Part8.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
3144Part8.Position = Vector3.new(-18.4313564, 3.49405909, 23.2131767)
3145Part8.Orientation = Vector3.new(-1.10000002, -179.919998, 84.0199966)
3146Part8.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
3147Weld9.Name = "qCFrameWeldThingy"
3148Weld9.Parent = Part8
3149Weld9.C1 = CFrame.new(-0.46002388, 0.010010004, -0.390087128, 1, -1.58654103e-07, 2.59842807e-07, 1.58654132e-07, 1, -1.10463297e-07, -2.59842778e-07, 1.1046334e-07, 1)
3150Weld9.Part0 = Part1
3151Weld9.Part1 = Part8
3152CFrameValue10.Name = "qRelativeCFrameWeldValue"
3153CFrameValue10.Parent = Part8
3154CFrameValue10.Value = CFrame.new(-0.46002388, 0.010010004, -0.390087128, 1, -1.58654103e-07, 2.59842807e-07, 1.58654132e-07, 1, -1.10463297e-07, -2.59842778e-07, 1.1046334e-07, 1)
3155Part11.Parent = Model0
3156Part11.Material = Enum.Material.SmoothPlastic
3157Part11.BrickColor = BrickColor.new("Really black")
3158Part11.Rotation = Vector3.new(-178.899994, -0.0799999982, -95.9799957)
3159Part11.CanCollide = false
3160Part11.Size = Vector3.new(1.12, 0.200000003, 0.200000003)
3161Part11.CFrame = CFrame.new(-18.0659237, 3.07936549, 22.7147007, -0.104140192, 0.994561672, -0.00137326145, 0.994376838, 0.104147322, 0.0191858653, 0.0192245487, 0.000632480369, -0.999814987)
3162Part11.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3163Part11.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3164Part11.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3165Part11.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3166Part11.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3167Part11.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3168Part11.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
3169Part11.Position = Vector3.new(-18.0659237, 3.07936549, 22.7147007)
3170Part11.Orientation = Vector3.new(-1.10000002, -179.919998, 84.0199966)
3171Part11.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
3172Weld12.Name = "qCFrameWeldThingy"
3173Weld12.Parent = Part11
3174Weld12.C1 = CFrame.new(-2.28881836e-05, -0.309931993, -0.880012512, 1, -1.58654103e-07, 2.59842807e-07, 1.58654132e-07, 1, -1.10463297e-07, -2.59842778e-07, 1.1046334e-07, 1)
3175Weld12.Part0 = Part1
3176Weld12.Part1 = Part11
3177CFrameValue13.Name = "qRelativeCFrameWeldValue"
3178CFrameValue13.Parent = Part11
3179CFrameValue13.Value = CFrame.new(-2.28881836e-05, -0.309931993, -0.880012512, 1, -1.58654103e-07, 2.59842807e-07, 1.58654132e-07, 1, -1.10463297e-07, -2.59842778e-07, 1.1046334e-07, 1)
3180Part14.Parent = Model0
3181Part14.Material = Enum.Material.SmoothPlastic
3182Part14.BrickColor = BrickColor.new("Really black")
3183Part14.Rotation = Vector3.new(-178.899994, -0.0799999982, -95.9799957)
3184Part14.CanCollide = false
3185Part14.Size = Vector3.new(0.200000003, 0.200000003, 1.10000002)
3186Part14.CFrame = CFrame.new(-18.325676, 2.58143425, 23.1355782, -0.104140192, 0.994561672, -0.00137326145, 0.994376838, 0.104147322, 0.0191858653, 0.0192245487, 0.000632480369, -0.999814987)
3187Part14.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3188Part14.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3189Part14.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3190Part14.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3191Part14.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3192Part14.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3193Part14.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
3194Part14.Position = Vector3.new(-18.325676, 2.58143425, 23.1355782)
3195Part14.Orientation = Vector3.new(-1.10000002, -179.919998, 84.0199966)
3196Part14.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
3197Weld15.Name = "qCFrameWeldThingy"
3198Weld15.Parent = Part14
3199Weld15.C1 = CFrame.new(0.45996666, 0, -0.450017929, 1, -1.58654103e-07, 2.59842807e-07, 1.58654132e-07, 1, -1.10463297e-07, -2.59842778e-07, 1.1046334e-07, 1)
3200Weld15.Part0 = Part1
3201Weld15.Part1 = Part14
3202CFrameValue16.Name = "qRelativeCFrameWeldValue"
3203CFrameValue16.Parent = Part14
3204CFrameValue16.Value = CFrame.new(0.45996666, 0, -0.450017929, 1, -1.58654103e-07, 2.59842807e-07, 1.58654132e-07, 1, -1.10463297e-07, -2.59842778e-07, 1.1046334e-07, 1)
3205Part17.Parent = Model0
3206Part17.Material = Enum.Material.SmoothPlastic
3207Part17.BrickColor = BrickColor.new("Really black")
3208Part17.Rotation = Vector3.new(-178.899994, -0.0799999982, -95.9799957)
3209Part17.CanCollide = false
3210Part17.Size = Vector3.new(0.919999957, 0.200000003, 0.980000019)
3211Part17.CFrame = CFrame.new(-18.0756702, 3.16945815, 23.2065067, -0.104140192, 0.994561672, -0.00137326145, 0.994376838, 0.104147322, 0.0191858653, 0.0192245487, 0.000632480369, -0.999814987)
3212Part17.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3213Part17.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3214Part17.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3215Part17.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3216Part17.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3217Part17.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3218Part17.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
3219Part17.Position = Vector3.new(-18.0756702, 3.16945815, 23.2065067)
3220Part17.Orientation = Vector3.new(-1.10000002, -179.919998, 84.0199966)
3221Part17.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
3222Weld18.Name = "qCFrameWeldThingy"
3223Weld18.Parent = Part17
3224Weld18.C1 = CFrame.new(-0.100078583, -0.309931993, -0.390039444, 1, -1.58654103e-07, 2.59842807e-07, 1.58654132e-07, 1, -1.10463297e-07, -2.59842778e-07, 1.1046334e-07, 1)
3225Weld18.Part0 = Part1
3226Weld18.Part1 = Part17
3227CFrameValue19.Name = "qRelativeCFrameWeldValue"
3228CFrameValue19.Parent = Part17
3229CFrameValue19.Value = CFrame.new(-0.100078583, -0.309931993, -0.390039444, 1, -1.58654103e-07, 2.59842807e-07, 1.58654132e-07, 1, -1.10463297e-07, -2.59842778e-07, 1.1046334e-07, 1)
3230Part20.Name = "Middle"
3231Part20.Parent = Model0
3232Part20.BrickColor = BrickColor.new("Really black")
3233Part20.Transparency = 1
3234Part20.Rotation = Vector3.new(1.10000002, 0.0799999982, -84.0199966)
3235Part20.CanCollide = false
3236Part20.FormFactor = Enum.FormFactor.Symmetric
3237Part20.Size = Vector3.new(1.22000003, 2, 1)
3238Part20.CFrame = CFrame.new(-18.3028564, 3.0350101, 23.1542149, 0.104140192, 0.994561672, 0.00137326145, -0.994376838, 0.104147322, -0.0191858653, -0.0192245487, 0.000632480369, 0.999814987)
3239Part20.BottomSurface = Enum.SurfaceType.Smooth
3240Part20.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
3241Part20.Position = Vector3.new(-18.3028564, 3.0350101, 23.1542149)
3242Part20.Orientation = Vector3.new(1.10000002, 0.0799999982, -84.0199966)
3243Part20.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
3244Weld21.Name = "qCFrameWeldThingy"
3245Weld21.Parent = Part20
3246Weld21.C1 = CFrame.new(-0.0109596252, -0.0699470043, 0.44005394, -1, 1.58654103e-07, -2.59842807e-07, 1.58654132e-07, 1, -1.10463297e-07, 2.59842778e-07, -1.1046334e-07, -1)
3247Weld21.Part0 = Part1
3248Weld21.Part1 = Part20
3249CFrameValue22.Name = "qRelativeCFrameWeldValue"
3250CFrameValue22.Parent = Part20
3251CFrameValue22.Value = CFrame.new(-0.0109596252, -0.0699470043, 0.44005394, -1, 1.58654103e-07, -2.59842807e-07, 1.58654132e-07, 1, -1.10463297e-07, 2.59842778e-07, -1.1046334e-07, -1)
3252Part23.Parent = Model0
3253Part23.Material = Enum.Material.SmoothPlastic
3254Part23.BrickColor = BrickColor.new("Really black")
3255Part23.Rotation = Vector3.new(91.1100006, 5.98000002, -90.0799942)
3256Part23.Size = Vector3.new(0.45788303, 0.195007578, 0.253826499)
3257Part23.CFrame = CFrame.new(-18.0880146, 3.62485242, 23.4053211, -0.00137328415, 0.994561672, 0.1041402, 0.0191860739, 0.10414733, -0.994376838, -0.999814987, 0.000632479612, -0.0192247573)
3258Part23.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3259Part23.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3260Part23.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3261Part23.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3262Part23.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3263Part23.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3264Part23.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
3265Part23.Position = Vector3.new(-18.0880146, 3.62485242, 23.4053211)
3266Part23.Orientation = Vector3.new(83.9199982, 100.459999, 10.4399996)
3267Part23.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
3268Weld24.Name = "qCFrameWeldThingy"
3269Weld24.Parent = Part23
3270Weld24.C1 = CFrame.new(-0.200016022, -0.345209002, 0.558019638, -5.02921509e-08, 1.09553795e-07, 1, 1.64222385e-07, 1, -1.09553781e-07, -1, 1.64222385e-07, -5.02922148e-08)
3271Weld24.Part0 = Part1
3272Weld24.Part1 = Part23
3273CFrameValue25.Name = "qRelativeCFrameWeldValue"
3274CFrameValue25.Parent = Part23
3275CFrameValue25.Value = CFrame.new(-0.200016022, -0.345209002, 0.558019638, -5.02921509e-08, 1.09553795e-07, 1, 1.64222385e-07, 1, -1.09553781e-07, -1, 1.64222385e-07, -5.02922148e-08)
3276Part26.Parent = Model0
3277Part26.Material = Enum.Material.Neon
3278Part26.BrickColor = BrickColor.new("Lime green")
3279Part26.Rotation = Vector3.new(91.1100006, 5.98000002, -90.0799942)
3280Part26.Size = Vector3.new(0.152929291, 0.0389110669, 0.267852575)
3281Part26.CFrame = CFrame.new(-18.0813389, 3.63259411, 23.4090347, -0.00137328415, 0.994561672, 0.1041402, 0.0191860739, 0.10414733, -0.994376838, -0.999814987, 0.000632479612, -0.0192247573)
3282Part26.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3283Part26.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3284Part26.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3285Part26.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3286Part26.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3287Part26.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3288Part26.Color = Color3.new(1, 0, 0)
3289Part26.Position = Vector3.new(-18.0813389, 3.63259411, 23.4090347)
3290Part26.Orientation = Vector3.new(83.9199982, 100.459999, 10.4399996)
3291Part26.Color = Color3.new(1, 0, 0)
3292Weld27.Name = "qCFrameWeldThingy"
3293Weld27.Parent = Part26
3294Weld27.C1 = CFrame.new(-0.196443558, -0.352656007, 0.565093994, -5.02921509e-08, 1.09553795e-07, 1, 1.64222385e-07, 1, -1.09553781e-07, -1, 1.64222385e-07, -5.02922148e-08)
3295Weld27.Part0 = Part1
3296Weld27.Part1 = Part26
3297CFrameValue28.Name = "qRelativeCFrameWeldValue"
3298CFrameValue28.Parent = Part26
3299CFrameValue28.Value = CFrame.new(-0.196443558, -0.352656007, 0.565093994, -5.02921509e-08, 1.09553795e-07, 1, 1.64222385e-07, 1, -1.09553781e-07, -1, 1.64222385e-07, -5.02922148e-08)
3300Part29.Parent = Model0
3301Part29.Material = Enum.Material.SmoothPlastic
3302Part29.BrickColor = BrickColor.new("Really black")
3303Part29.Rotation = Vector3.new(91.1100006, 5.98000002, -90.0799942)
3304Part29.Size = Vector3.new(0.399064094, 0.535459578, 0.200889423)
3305Part29.CFrame = CFrame.new(-18.2582397, 3.61599255, 23.4035149, -0.00137328415, 0.994561672, 0.1041402, 0.0191860739, 0.10414733, -0.994376838, -0.999814987, 0.000632479612, -0.0192247573)
3306Part29.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3307Part29.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3308Part29.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3309Part29.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3310Part29.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3311Part29.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3312Part29.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
3313Part29.Position = Vector3.new(-18.2582397, 3.61599255, 23.4035149)
3314Part29.Orientation = Vector3.new(83.9199982, 100.459999, 10.4399996)
3315Part29.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
3316Weld30.Name = "qCFrameWeldThingy"
3317Weld30.Parent = Part29
3318Weld30.C1 = CFrame.new(-0.201887131, -0.174986005, 0.566902161, -5.02921509e-08, 1.09553795e-07, 1, 1.64222385e-07, 1, -1.09553781e-07, -1, 1.64222385e-07, -5.02922148e-08)
3319Weld30.Part0 = Part1
3320Weld30.Part1 = Part29
3321CFrameValue31.Name = "qRelativeCFrameWeldValue"
3322CFrameValue31.Parent = Part29
3323CFrameValue31.Value = CFrame.new(-0.201887131, -0.174986005, 0.566902161, -5.02921509e-08, 1.09553795e-07, 1, 1.64222385e-07, 1, -1.09553781e-07, -1, 1.64222385e-07, -5.02922148e-08)
3324Part32.Parent = Model0
3325Part32.Material = Enum.Material.SmoothPlastic
3326Part32.BrickColor = BrickColor.new("Really black")
3327Part32.Rotation = Vector3.new(91.1100006, 5.98000002, -90.0799942)
3328Part32.Size = Vector3.new(0.399064094, 0.535459578, 0.200889423)
3329Part32.CFrame = CFrame.new(-18.2578926, 3.61577511, 22.8934994, -0.00137328415, 0.994561672, 0.1041402, 0.0191860739, 0.10414733, -0.994376838, -0.999814987, 0.000632479612, -0.0192247573)
3330Part32.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3331Part32.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3332Part32.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3333Part32.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3334Part32.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3335Part32.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3336Part32.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
3337Part32.Position = Vector3.new(-18.2578926, 3.61577511, 22.8934994)
3338Part32.Orientation = Vector3.new(83.9199982, 100.459999, 10.4399996)
3339Part32.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
3340Weld33.Name = "qCFrameWeldThingy"
3341Weld33.Parent = Part32
3342Weld33.C1 = CFrame.new(-0.711803436, -0.174986124, 0.556844711, -5.02921509e-08, 1.09553795e-07, 1, 1.64222385e-07, 1, -1.09553781e-07, -1, 1.64222385e-07, -5.02922148e-08)
3343Weld33.Part0 = Part1
3344Weld33.Part1 = Part32
3345CFrameValue34.Name = "qRelativeCFrameWeldValue"
3346CFrameValue34.Parent = Part32
3347CFrameValue34.Value = CFrame.new(-0.711803436, -0.174986124, 0.556844711, -5.02921509e-08, 1.09553795e-07, 1, 1.64222385e-07, 1, -1.09553781e-07, -1, 1.64222385e-07, -5.02922148e-08)
3348Part35.Parent = Model0
3349Part35.Material = Enum.Material.SmoothPlastic
3350Part35.BrickColor = BrickColor.new("Really black")
3351Part35.Rotation = Vector3.new(91.1100006, 5.98000002, -90.0799942)
3352Part35.Size = Vector3.new(0.45788303, 0.195007578, 0.253826499)
3353Part35.CFrame = CFrame.new(-18.0876789, 3.62475324, 22.8952656, -0.00137328415, 0.994561672, 0.1041402, 0.0191860739, 0.10414733, -0.994376838, -0.999814987, 0.000632479612, -0.0192247573)
3354Part35.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3355Part35.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3356Part35.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3357Part35.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3358Part35.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3359Part35.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3360Part35.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
3361Part35.Position = Vector3.new(-18.0876789, 3.62475324, 22.8952656)
3362Part35.Orientation = Vector3.new(83.9199982, 100.459999, 10.4399996)
3363Part35.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
3364Weld36.Name = "qCFrameWeldThingy"
3365Weld36.Parent = Part35
3366Weld36.C1 = CFrame.new(-0.709976196, -0.345209122, 0.548080444, -5.02921509e-08, 1.09553795e-07, 1, 1.64222385e-07, 1, -1.09553781e-07, -1, 1.64222385e-07, -5.02922148e-08)
3367Weld36.Part0 = Part1
3368Weld36.Part1 = Part35
3369CFrameValue37.Name = "qRelativeCFrameWeldValue"
3370CFrameValue37.Parent = Part35
3371CFrameValue37.Value = CFrame.new(-0.709976196, -0.345209122, 0.548080444, -5.02921509e-08, 1.09553795e-07, 1, 1.64222385e-07, 1, -1.09553781e-07, -1, 1.64222385e-07, -5.02922148e-08)
3372Part38.Parent = Model0
3373Part38.Material = Enum.Material.Neon
3374Part38.BrickColor = BrickColor.new("Lime green")
3375Part38.Rotation = Vector3.new(91.1100006, 5.98000002, -90.0799942)
3376Part38.Size = Vector3.new(0.152929291, 0.0389110669, 0.267852575)
3377Part38.CFrame = CFrame.new(-18.0809937, 3.63238764, 22.8990211, -0.00137328415, 0.994561672, 0.1041402, 0.0191860739, 0.10414733, -0.994376838, -0.999814987, 0.000632479612, -0.0192247573)
3378Part38.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3379Part38.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3380Part38.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3381Part38.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3382Part38.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3383Part38.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3384Part38.Color = Color3.new(1, 0, 0)
3385Part38.Position = Vector3.new(-18.0809937, 3.63238764, 22.8990211)
3386Part38.Orientation = Vector3.new(83.9199982, 100.459999, 10.4399996)
3387Part38.Color = Color3.new(1, 0, 0)
3388Weld39.Name = "qCFrameWeldThingy"
3389Weld39.Parent = Part38
3390Weld39.C1 = CFrame.new(-0.706357956, -0.352656126, 0.555047989, -5.02921509e-08, 1.09553795e-07, 1, 1.64222385e-07, 1, -1.09553781e-07, -1, 1.64222385e-07, -5.02922148e-08)
3391Weld39.Part0 = Part1
3392Weld39.Part1 = Part38
3393CFrameValue40.Name = "qRelativeCFrameWeldValue"
3394CFrameValue40.Parent = Part38
3395CFrameValue40.Value = CFrame.new(-0.706357956, -0.352656126, 0.555047989, -5.02921509e-08, 1.09553795e-07, 1, 1.64222385e-07, 1, -1.09553781e-07, -1, 1.64222385e-07, -5.02922148e-08)
3396
3397WELD2SUMLEG = Instance.new("Weld")
3398WELD2SUMLEG.Parent = Part20
3399WELD2SUMLEG.Name = "Ur faget"
3400WELD2SUMLEG.Part0 = Part20
3401WELD2SUMLEG.Part1 = game.Players.LocalPlayer.Character["Right Leg"]
3402WELD2SUMLEG.C1 = CFrame.Angles(0,9.35,0)
3403
3404Model0 = Instance.new("Model")
3405Part1 = Instance.new("Part")
3406Part2 = Instance.new("Part")
3407Weld3 = Instance.new("Weld")
3408CFrameValue4 = Instance.new("CFrameValue")
3409Part5 = Instance.new("Part")
3410Weld6 = Instance.new("Weld")
3411CFrameValue7 = Instance.new("CFrameValue")
3412Part8 = Instance.new("Part")
3413Weld9 = Instance.new("Weld")
3414CFrameValue10 = Instance.new("CFrameValue")
3415Part11 = Instance.new("Part")
3416Weld12 = Instance.new("Weld")
3417CFrameValue13 = Instance.new("CFrameValue")
3418Part14 = Instance.new("Part")
3419Weld15 = Instance.new("Weld")
3420CFrameValue16 = Instance.new("CFrameValue")
3421Part17 = Instance.new("Part")
3422Weld18 = Instance.new("Weld")
3423CFrameValue19 = Instance.new("CFrameValue")
3424Part20 = Instance.new("Part")
3425Weld21 = Instance.new("Weld")
3426CFrameValue22 = Instance.new("CFrameValue")
3427Part23 = Instance.new("Part")
3428Weld24 = Instance.new("Weld")
3429CFrameValue25 = Instance.new("CFrameValue")
3430Part26 = Instance.new("Part")
3431Weld27 = Instance.new("Weld")
3432CFrameValue28 = Instance.new("CFrameValue")
3433Part29 = Instance.new("Part")
3434Weld30 = Instance.new("Weld")
3435CFrameValue31 = Instance.new("CFrameValue")
3436Part32 = Instance.new("Part")
3437Weld33 = Instance.new("Weld")
3438CFrameValue34 = Instance.new("CFrameValue")
3439Part35 = Instance.new("Part")
3440Weld36 = Instance.new("Weld")
3441CFrameValue37 = Instance.new("CFrameValue")
3442Part38 = Instance.new("Part")
3443Weld39 = Instance.new("Weld")
3444CFrameValue40 = Instance.new("CFrameValue")
3445Model0.Name = "Leg1"
3446Model0.Parent = game.Players.LocalPlayer.Character
3447Part1.Parent = Model0
3448Part1.Material = Enum.Material.SmoothPlastic
3449Part1.BrickColor = BrickColor.new("Really black")
3450Part1.Rotation = Vector3.new(-178.899994, -0.0799999982, -95.9799957)
3451Part1.CanCollide = false
3452Part1.Size = Vector3.new(1.12, 0.200000003, 0.200000003)
3453Part1.CFrame = CFrame.new(-18.3729591, 3.03018045, 23.5943546, -0.104140036, 0.994561672, -0.00137339835, 0.994376838, 0.104147166, 0.019186113, 0.0192248076, 0.000632366922, -0.999814987)
3454Part1.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3455Part1.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3456Part1.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3457Part1.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3458Part1.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3459Part1.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3460Part1.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
3461Part1.Position = Vector3.new(-18.3729591, 3.03018045, 23.5943546)
3462Part1.Orientation = Vector3.new(-1.10000002, -179.919998, 84.0199966)
3463Part1.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
3464Part2.Parent = Model0
3465Part2.Material = Enum.Material.SmoothPlastic
3466Part2.BrickColor = BrickColor.new("Really black")
3467Part2.Rotation = Vector3.new(-178.899994, -0.0799999982, -95.9799957)
3468Part2.CanCollide = false
3469Part2.Size = Vector3.new(0.200000003, 0.200000003, 1.10000002)
3470Part2.CFrame = CFrame.new(-18.0173988, 2.61329341, 23.1558533, -0.104140192, 0.994561672, -0.00137326145, 0.994376838, 0.104147322, 0.0191858653, 0.0192245487, 0.000632480369, -0.999814987)
3471Part2.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3472Part2.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3473Part2.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3474Part2.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3475Part2.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3476Part2.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3477Part2.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
3478Part2.Position = Vector3.new(-18.0173988, 2.61329341, 23.1558533)
3479Part2.Orientation = Vector3.new(-1.10000002, -179.919998, 84.0199966)
3480Part2.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
3481Weld3.Name = "qCFrameWeldThingy"
3482Weld3.Parent = Part2
3483Weld3.C1 = CFrame.new(0.460000992, -0.309931993, -0.429933548, 1, -1.58654103e-07, 2.59842807e-07, 1.58654132e-07, 1, -1.10463297e-07, -2.59842778e-07, 1.1046334e-07, 1)
3484Weld3.Part0 = Part1
3485Weld3.Part1 = Part2
3486CFrameValue4.Name = "qRelativeCFrameWeldValue"
3487CFrameValue4.Parent = Part2
3488CFrameValue4.Value = CFrame.new(0.460000992, -0.309931993, -0.429933548, 1, -1.58654103e-07, 2.59842807e-07, 1.58654132e-07, 1, -1.10463297e-07, -2.59842778e-07, 1.1046334e-07, 1)
3489Part5.Parent = Model0
3490Part5.Material = Enum.Material.SmoothPlastic
3491Part5.BrickColor = BrickColor.new("Really black")
3492Part5.Rotation = Vector3.new(-178.899994, -0.0799999982, -95.9799957)
3493Part5.CanCollide = false
3494Part5.Size = Vector3.new(1.12, 0.200000003, 0.200000003)
3495Part5.CFrame = CFrame.new(-18.3741989, 3.04749036, 22.6944733, -0.104140192, 0.994561672, -0.00137326145, 0.994376838, 0.104147322, 0.0191858653, 0.0192245487, 0.000632480369, -0.999814987)
3496Part5.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3497Part5.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3498Part5.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3499Part5.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3500Part5.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3501Part5.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3502Part5.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
3503Part5.Position = Vector3.new(-18.3741989, 3.04749036, 22.6944733)
3504Part5.Orientation = Vector3.new(-1.10000002, -179.919998, 84.0199966)
3505Part5.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
3506Weld6.Name = "qCFrameWeldThingy"
3507Weld6.Parent = Part5
3508Weld6.C1 = CFrame.new(-4.19616699e-05, 0, -0.90004921, 1, -1.58654103e-07, 2.59842807e-07, 1.58654132e-07, 1, -1.10463297e-07, -2.59842778e-07, 1.1046334e-07, 1)
3509Weld6.Part0 = Part1
3510Weld6.Part1 = Part5
3511CFrameValue7.Name = "qRelativeCFrameWeldValue"
3512CFrameValue7.Parent = Part5
3513CFrameValue7.Value = CFrame.new(-4.19616699e-05, 0, -0.90004921, 1, -1.58654103e-07, 2.59842807e-07, 1.58654132e-07, 1, -1.10463297e-07, -2.59842778e-07, 1.1046334e-07, 1)
3514Part8.Parent = Model0
3515Part8.Material = Enum.Material.SmoothPlastic
3516Part8.BrickColor = BrickColor.new("Really black")
3517Part8.Rotation = Vector3.new(-178.899994, -0.0799999982, -95.9799957)
3518Part8.CanCollide = false
3519Part8.Size = Vector3.new(0.200000003, 0.200000003, 0.980000019)
3520Part8.CFrame = CFrame.new(-18.4313564, 3.49405909, 23.2131767, -0.104140192, 0.994561672, -0.00137326145, 0.994376838, 0.104147322, 0.0191858653, 0.0192245487, 0.000632480369, -0.999814987)
3521Part8.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3522Part8.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3523Part8.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3524Part8.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3525Part8.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3526Part8.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3527Part8.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
3528Part8.Position = Vector3.new(-18.4313564, 3.49405909, 23.2131767)
3529Part8.Orientation = Vector3.new(-1.10000002, -179.919998, 84.0199966)
3530Part8.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
3531Weld9.Name = "qCFrameWeldThingy"
3532Weld9.Parent = Part8
3533Weld9.C1 = CFrame.new(-0.46002388, 0.010010004, -0.390087128, 1, -1.58654103e-07, 2.59842807e-07, 1.58654132e-07, 1, -1.10463297e-07, -2.59842778e-07, 1.1046334e-07, 1)
3534Weld9.Part0 = Part1
3535Weld9.Part1 = Part8
3536CFrameValue10.Name = "qRelativeCFrameWeldValue"
3537CFrameValue10.Parent = Part8
3538CFrameValue10.Value = CFrame.new(-0.46002388, 0.010010004, -0.390087128, 1, -1.58654103e-07, 2.59842807e-07, 1.58654132e-07, 1, -1.10463297e-07, -2.59842778e-07, 1.1046334e-07, 1)
3539Part11.Parent = Model0
3540Part11.Material = Enum.Material.SmoothPlastic
3541Part11.BrickColor = BrickColor.new("Really black")
3542Part11.Rotation = Vector3.new(-178.899994, -0.0799999982, -95.9799957)
3543Part11.CanCollide = false
3544Part11.Size = Vector3.new(1.12, 0.200000003, 0.200000003)
3545Part11.CFrame = CFrame.new(-18.0659237, 3.07936549, 22.7147007, -0.104140192, 0.994561672, -0.00137326145, 0.994376838, 0.104147322, 0.0191858653, 0.0192245487, 0.000632480369, -0.999814987)
3546Part11.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3547Part11.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3548Part11.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3549Part11.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3550Part11.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3551Part11.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3552Part11.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
3553Part11.Position = Vector3.new(-18.0659237, 3.07936549, 22.7147007)
3554Part11.Orientation = Vector3.new(-1.10000002, -179.919998, 84.0199966)
3555Part11.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
3556Weld12.Name = "qCFrameWeldThingy"
3557Weld12.Parent = Part11
3558Weld12.C1 = CFrame.new(-2.28881836e-05, -0.309931993, -0.880012512, 1, -1.58654103e-07, 2.59842807e-07, 1.58654132e-07, 1, -1.10463297e-07, -2.59842778e-07, 1.1046334e-07, 1)
3559Weld12.Part0 = Part1
3560Weld12.Part1 = Part11
3561CFrameValue13.Name = "qRelativeCFrameWeldValue"
3562CFrameValue13.Parent = Part11
3563CFrameValue13.Value = CFrame.new(-2.28881836e-05, -0.309931993, -0.880012512, 1, -1.58654103e-07, 2.59842807e-07, 1.58654132e-07, 1, -1.10463297e-07, -2.59842778e-07, 1.1046334e-07, 1)
3564Part14.Parent = Model0
3565Part14.Material = Enum.Material.SmoothPlastic
3566Part14.BrickColor = BrickColor.new("Really black")
3567Part14.Rotation = Vector3.new(-178.899994, -0.0799999982, -95.9799957)
3568Part14.CanCollide = false
3569Part14.Size = Vector3.new(0.200000003, 0.200000003, 1.10000002)
3570Part14.CFrame = CFrame.new(-18.325676, 2.58143425, 23.1355782, -0.104140192, 0.994561672, -0.00137326145, 0.994376838, 0.104147322, 0.0191858653, 0.0192245487, 0.000632480369, -0.999814987)
3571Part14.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3572Part14.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3573Part14.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3574Part14.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3575Part14.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3576Part14.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3577Part14.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
3578Part14.Position = Vector3.new(-18.325676, 2.58143425, 23.1355782)
3579Part14.Orientation = Vector3.new(-1.10000002, -179.919998, 84.0199966)
3580Part14.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
3581Weld15.Name = "qCFrameWeldThingy"
3582Weld15.Parent = Part14
3583Weld15.C1 = CFrame.new(0.45996666, 0, -0.450017929, 1, -1.58654103e-07, 2.59842807e-07, 1.58654132e-07, 1, -1.10463297e-07, -2.59842778e-07, 1.1046334e-07, 1)
3584Weld15.Part0 = Part1
3585Weld15.Part1 = Part14
3586CFrameValue16.Name = "qRelativeCFrameWeldValue"
3587CFrameValue16.Parent = Part14
3588CFrameValue16.Value = CFrame.new(0.45996666, 0, -0.450017929, 1, -1.58654103e-07, 2.59842807e-07, 1.58654132e-07, 1, -1.10463297e-07, -2.59842778e-07, 1.1046334e-07, 1)
3589Part17.Parent = Model0
3590Part17.Material = Enum.Material.SmoothPlastic
3591Part17.BrickColor = BrickColor.new("Really black")
3592Part17.Rotation = Vector3.new(-178.899994, -0.0799999982, -95.9799957)
3593Part17.CanCollide = false
3594Part17.Size = Vector3.new(0.919999957, 0.200000003, 0.980000019)
3595Part17.CFrame = CFrame.new(-18.0756702, 3.16945815, 23.2065067, -0.104140192, 0.994561672, -0.00137326145, 0.994376838, 0.104147322, 0.0191858653, 0.0192245487, 0.000632480369, -0.999814987)
3596Part17.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3597Part17.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3598Part17.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3599Part17.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3600Part17.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3601Part17.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3602Part17.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
3603Part17.Position = Vector3.new(-18.0756702, 3.16945815, 23.2065067)
3604Part17.Orientation = Vector3.new(-1.10000002, -179.919998, 84.0199966)
3605Part17.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
3606Weld18.Name = "qCFrameWeldThingy"
3607Weld18.Parent = Part17
3608Weld18.C1 = CFrame.new(-0.100078583, -0.309931993, -0.390039444, 1, -1.58654103e-07, 2.59842807e-07, 1.58654132e-07, 1, -1.10463297e-07, -2.59842778e-07, 1.1046334e-07, 1)
3609Weld18.Part0 = Part1
3610Weld18.Part1 = Part17
3611CFrameValue19.Name = "qRelativeCFrameWeldValue"
3612CFrameValue19.Parent = Part17
3613CFrameValue19.Value = CFrame.new(-0.100078583, -0.309931993, -0.390039444, 1, -1.58654103e-07, 2.59842807e-07, 1.58654132e-07, 1, -1.10463297e-07, -2.59842778e-07, 1.1046334e-07, 1)
3614Part20.Name = "Middle"
3615Part20.Parent = Model0
3616Part20.BrickColor = BrickColor.new("Really black")
3617Part20.Transparency = 1
3618Part20.Rotation = Vector3.new(1.10000002, 0.0799999982, -84.0199966)
3619Part20.CanCollide = false
3620Part20.FormFactor = Enum.FormFactor.Symmetric
3621Part20.Size = Vector3.new(1.22000003, 2, 1)
3622Part20.CFrame = CFrame.new(-18.3028564, 3.0350101, 23.1542149, 0.104140192, 0.994561672, 0.00137326145, -0.994376838, 0.104147322, -0.0191858653, -0.0192245487, 0.000632480369, 0.999814987)
3623Part20.BottomSurface = Enum.SurfaceType.Smooth
3624Part20.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
3625Part20.Position = Vector3.new(-18.3028564, 3.0350101, 23.1542149)
3626Part20.Orientation = Vector3.new(1.10000002, 0.0799999982, -84.0199966)
3627Part20.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
3628Weld21.Name = "qCFrameWeldThingy"
3629Weld21.Parent = Part20
3630Weld21.C1 = CFrame.new(-0.0109596252, -0.0699470043, 0.44005394, -1, 1.58654103e-07, -2.59842807e-07, 1.58654132e-07, 1, -1.10463297e-07, 2.59842778e-07, -1.1046334e-07, -1)
3631Weld21.Part0 = Part1
3632Weld21.Part1 = Part20
3633CFrameValue22.Name = "qRelativeCFrameWeldValue"
3634CFrameValue22.Parent = Part20
3635CFrameValue22.Value = CFrame.new(-0.0109596252, -0.0699470043, 0.44005394, -1, 1.58654103e-07, -2.59842807e-07, 1.58654132e-07, 1, -1.10463297e-07, 2.59842778e-07, -1.1046334e-07, -1)
3636Part23.Parent = Model0
3637Part23.Material = Enum.Material.SmoothPlastic
3638Part23.BrickColor = BrickColor.new("Really black")
3639Part23.Rotation = Vector3.new(91.1100006, 5.98000002, -90.0799942)
3640Part23.Size = Vector3.new(0.45788303, 0.195007578, 0.253826499)
3641Part23.CFrame = CFrame.new(-18.0880146, 3.62485242, 23.4053211, -0.00137328415, 0.994561672, 0.1041402, 0.0191860739, 0.10414733, -0.994376838, -0.999814987, 0.000632479612, -0.0192247573)
3642Part23.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3643Part23.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3644Part23.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3645Part23.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3646Part23.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3647Part23.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3648Part23.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
3649Part23.Position = Vector3.new(-18.0880146, 3.62485242, 23.4053211)
3650Part23.Orientation = Vector3.new(83.9199982, 100.459999, 10.4399996)
3651Part23.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
3652Weld24.Name = "qCFrameWeldThingy"
3653Weld24.Parent = Part23
3654Weld24.C1 = CFrame.new(-0.200016022, -0.345209002, 0.558019638, -5.02921509e-08, 1.09553795e-07, 1, 1.64222385e-07, 1, -1.09553781e-07, -1, 1.64222385e-07, -5.02922148e-08)
3655Weld24.Part0 = Part1
3656Weld24.Part1 = Part23
3657CFrameValue25.Name = "qRelativeCFrameWeldValue"
3658CFrameValue25.Parent = Part23
3659CFrameValue25.Value = CFrame.new(-0.200016022, -0.345209002, 0.558019638, -5.02921509e-08, 1.09553795e-07, 1, 1.64222385e-07, 1, -1.09553781e-07, -1, 1.64222385e-07, -5.02922148e-08)
3660Part26.Parent = Model0
3661Part26.Material = Enum.Material.Neon
3662Part26.BrickColor = BrickColor.new("Lime green")
3663Part26.Rotation = Vector3.new(91.1100006, 5.98000002, -90.0799942)
3664Part26.Size = Vector3.new(0.152929291, 0.0389110669, 0.267852575)
3665Part26.CFrame = CFrame.new(-18.0813389, 3.63259411, 23.4090347, -0.00137328415, 0.994561672, 0.1041402, 0.0191860739, 0.10414733, -0.994376838, -0.999814987, 0.000632479612, -0.0192247573)
3666Part26.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3667Part26.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3668Part26.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3669Part26.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3670Part26.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3671Part26.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3672Part26.Color = Color3.new(1, 0, 0)
3673Part26.Position = Vector3.new(-18.0813389, 3.63259411, 23.4090347)
3674Part26.Orientation = Vector3.new(83.9199982, 100.459999, 10.4399996)
3675Part26.Color = Color3.new(1, 0, 0)
3676Weld27.Name = "qCFrameWeldThingy"
3677Weld27.Parent = Part26
3678Weld27.C1 = CFrame.new(-0.196443558, -0.352656007, 0.565093994, -5.02921509e-08, 1.09553795e-07, 1, 1.64222385e-07, 1, -1.09553781e-07, -1, 1.64222385e-07, -5.02922148e-08)
3679Weld27.Part0 = Part1
3680Weld27.Part1 = Part26
3681CFrameValue28.Name = "qRelativeCFrameWeldValue"
3682CFrameValue28.Parent = Part26
3683CFrameValue28.Value = CFrame.new(-0.196443558, -0.352656007, 0.565093994, -5.02921509e-08, 1.09553795e-07, 1, 1.64222385e-07, 1, -1.09553781e-07, -1, 1.64222385e-07, -5.02922148e-08)
3684Part29.Parent = Model0
3685Part29.Material = Enum.Material.SmoothPlastic
3686Part29.BrickColor = BrickColor.new("Really black")
3687Part29.Rotation = Vector3.new(91.1100006, 5.98000002, -90.0799942)
3688Part29.Size = Vector3.new(0.399064094, 0.535459578, 0.200889423)
3689Part29.CFrame = CFrame.new(-18.2582397, 3.61599255, 23.4035149, -0.00137328415, 0.994561672, 0.1041402, 0.0191860739, 0.10414733, -0.994376838, -0.999814987, 0.000632479612, -0.0192247573)
3690Part29.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3691Part29.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3692Part29.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3693Part29.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3694Part29.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3695Part29.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3696Part29.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
3697Part29.Position = Vector3.new(-18.2582397, 3.61599255, 23.4035149)
3698Part29.Orientation = Vector3.new(83.9199982, 100.459999, 10.4399996)
3699Part29.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
3700Weld30.Name = "qCFrameWeldThingy"
3701Weld30.Parent = Part29
3702Weld30.C1 = CFrame.new(-0.201887131, -0.174986005, 0.566902161, -5.02921509e-08, 1.09553795e-07, 1, 1.64222385e-07, 1, -1.09553781e-07, -1, 1.64222385e-07, -5.02922148e-08)
3703Weld30.Part0 = Part1
3704Weld30.Part1 = Part29
3705CFrameValue31.Name = "qRelativeCFrameWeldValue"
3706CFrameValue31.Parent = Part29
3707CFrameValue31.Value = CFrame.new(-0.201887131, -0.174986005, 0.566902161, -5.02921509e-08, 1.09553795e-07, 1, 1.64222385e-07, 1, -1.09553781e-07, -1, 1.64222385e-07, -5.02922148e-08)
3708Part32.Parent = Model0
3709Part32.Material = Enum.Material.SmoothPlastic
3710Part32.BrickColor = BrickColor.new("Really black")
3711Part32.Rotation = Vector3.new(91.1100006, 5.98000002, -90.0799942)
3712Part32.Size = Vector3.new(0.399064094, 0.535459578, 0.200889423)
3713Part32.CFrame = CFrame.new(-18.2578926, 3.61577511, 22.8934994, -0.00137328415, 0.994561672, 0.1041402, 0.0191860739, 0.10414733, -0.994376838, -0.999814987, 0.000632479612, -0.0192247573)
3714Part32.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3715Part32.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3716Part32.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3717Part32.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3718Part32.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3719Part32.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3720Part32.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
3721Part32.Position = Vector3.new(-18.2578926, 3.61577511, 22.8934994)
3722Part32.Orientation = Vector3.new(83.9199982, 100.459999, 10.4399996)
3723Part32.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
3724Weld33.Name = "qCFrameWeldThingy"
3725Weld33.Parent = Part32
3726Weld33.C1 = CFrame.new(-0.711803436, -0.174986124, 0.556844711, -5.02921509e-08, 1.09553795e-07, 1, 1.64222385e-07, 1, -1.09553781e-07, -1, 1.64222385e-07, -5.02922148e-08)
3727Weld33.Part0 = Part1
3728Weld33.Part1 = Part32
3729CFrameValue34.Name = "qRelativeCFrameWeldValue"
3730CFrameValue34.Parent = Part32
3731CFrameValue34.Value = CFrame.new(-0.711803436, -0.174986124, 0.556844711, -5.02921509e-08, 1.09553795e-07, 1, 1.64222385e-07, 1, -1.09553781e-07, -1, 1.64222385e-07, -5.02922148e-08)
3732Part35.Parent = Model0
3733Part35.Material = Enum.Material.SmoothPlastic
3734Part35.BrickColor = BrickColor.new("Really black")
3735Part35.Rotation = Vector3.new(91.1100006, 5.98000002, -90.0799942)
3736Part35.Size = Vector3.new(0.45788303, 0.195007578, 0.253826499)
3737Part35.CFrame = CFrame.new(-18.0876789, 3.62475324, 22.8952656, -0.00137328415, 0.994561672, 0.1041402, 0.0191860739, 0.10414733, -0.994376838, -0.999814987, 0.000632479612, -0.0192247573)
3738Part35.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3739Part35.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3740Part35.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3741Part35.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3742Part35.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3743Part35.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3744Part35.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
3745Part35.Position = Vector3.new(-18.0876789, 3.62475324, 22.8952656)
3746Part35.Orientation = Vector3.new(83.9199982, 100.459999, 10.4399996)
3747Part35.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
3748Weld36.Name = "qCFrameWeldThingy"
3749Weld36.Parent = Part35
3750Weld36.C1 = CFrame.new(-0.709976196, -0.345209122, 0.548080444, -5.02921509e-08, 1.09553795e-07, 1, 1.64222385e-07, 1, -1.09553781e-07, -1, 1.64222385e-07, -5.02922148e-08)
3751Weld36.Part0 = Part1
3752Weld36.Part1 = Part35
3753CFrameValue37.Name = "qRelativeCFrameWeldValue"
3754CFrameValue37.Parent = Part35
3755CFrameValue37.Value = CFrame.new(-0.709976196, -0.345209122, 0.548080444, -5.02921509e-08, 1.09553795e-07, 1, 1.64222385e-07, 1, -1.09553781e-07, -1, 1.64222385e-07, -5.02922148e-08)
3756Part38.Parent = Model0
3757Part38.Material = Enum.Material.Neon
3758Part38.BrickColor = BrickColor.new("Lime green")
3759Part38.Rotation = Vector3.new(91.1100006, 5.98000002, -90.0799942)
3760Part38.Size = Vector3.new(0.152929291, 0.0389110669, 0.267852575)
3761Part38.CFrame = CFrame.new(-18.0809937, 3.63238764, 22.8990211, -0.00137328415, 0.994561672, 0.1041402, 0.0191860739, 0.10414733, -0.994376838, -0.999814987, 0.000632479612, -0.0192247573)
3762Part38.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3763Part38.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3764Part38.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3765Part38.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3766Part38.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3767Part38.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3768Part38.Color = Color3.new(1, 0, 0)
3769Part38.Position = Vector3.new(-18.0809937, 3.63238764, 22.8990211)
3770Part38.Orientation = Vector3.new(83.9199982, 100.459999, 10.4399996)
3771Part38.Color = Color3.new(1, 0, 0)
3772Weld39.Name = "qCFrameWeldThingy"
3773Weld39.Parent = Part38
3774Weld39.C1 = CFrame.new(-0.706357956, -0.352656126, 0.555047989, -5.02921509e-08, 1.09553795e-07, 1, 1.64222385e-07, 1, -1.09553781e-07, -1, 1.64222385e-07, -5.02922148e-08)
3775Weld39.Part0 = Part1
3776Weld39.Part1 = Part38
3777CFrameValue40.Name = "qRelativeCFrameWeldValue"
3778CFrameValue40.Parent = Part38
3779CFrameValue40.Value = CFrame.new(-0.706357956, -0.352656126, 0.555047989, -5.02921509e-08, 1.09553795e-07, 1, 1.64222385e-07, 1, -1.09553781e-07, -1, 1.64222385e-07, -5.02922148e-08)
3780
3781WELD2SUMLEG = Instance.new("Weld")
3782WELD2SUMLEG.Parent = Part20
3783WELD2SUMLEG.Name = "Ur faget"
3784WELD2SUMLEG.Part0 = Part20
3785WELD2SUMLEG.Part1 = game.Players.LocalPlayer.Character["Left Arm"]
3786
3787Model0 = Instance.new("Model")
3788Part1 = Instance.new("Part")
3789Part2 = Instance.new("Part")
3790Weld3 = Instance.new("Weld")
3791CFrameValue4 = Instance.new("CFrameValue")
3792Part5 = Instance.new("Part")
3793Weld6 = Instance.new("Weld")
3794CFrameValue7 = Instance.new("CFrameValue")
3795Part8 = Instance.new("Part")
3796Weld9 = Instance.new("Weld")
3797CFrameValue10 = Instance.new("CFrameValue")
3798Part11 = Instance.new("Part")
3799Weld12 = Instance.new("Weld")
3800CFrameValue13 = Instance.new("CFrameValue")
3801Part14 = Instance.new("Part")
3802Weld15 = Instance.new("Weld")
3803CFrameValue16 = Instance.new("CFrameValue")
3804Part17 = Instance.new("Part")
3805Weld18 = Instance.new("Weld")
3806CFrameValue19 = Instance.new("CFrameValue")
3807Part20 = Instance.new("Part")
3808Weld21 = Instance.new("Weld")
3809CFrameValue22 = Instance.new("CFrameValue")
3810Part23 = Instance.new("Part")
3811Weld24 = Instance.new("Weld")
3812CFrameValue25 = Instance.new("CFrameValue")
3813Part26 = Instance.new("Part")
3814Weld27 = Instance.new("Weld")
3815CFrameValue28 = Instance.new("CFrameValue")
3816Part29 = Instance.new("Part")
3817Weld30 = Instance.new("Weld")
3818CFrameValue31 = Instance.new("CFrameValue")
3819Part32 = Instance.new("Part")
3820Weld33 = Instance.new("Weld")
3821CFrameValue34 = Instance.new("CFrameValue")
3822Part35 = Instance.new("Part")
3823Weld36 = Instance.new("Weld")
3824CFrameValue37 = Instance.new("CFrameValue")
3825Part38 = Instance.new("Part")
3826Weld39 = Instance.new("Weld")
3827CFrameValue40 = Instance.new("CFrameValue")
3828Model0.Name = "Leg1"
3829Model0.Parent = game.Players.LocalPlayer.Character
3830Part1.Parent = Model0
3831Part1.Material = Enum.Material.SmoothPlastic
3832Part1.BrickColor = BrickColor.new("Really black")
3833Part1.Rotation = Vector3.new(-178.899994, -0.0799999982, -95.9799957)
3834Part1.CanCollide = false
3835Part1.Size = Vector3.new(1.12, 0.200000003, 0.200000003)
3836Part1.CFrame = CFrame.new(-18.3729591, 3.03018045, 23.5943546, -0.104140036, 0.994561672, -0.00137339835, 0.994376838, 0.104147166, 0.019186113, 0.0192248076, 0.000632366922, -0.999814987)
3837Part1.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3838Part1.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3839Part1.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3840Part1.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3841Part1.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3842Part1.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3843Part1.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
3844Part1.Position = Vector3.new(-18.3729591, 3.03018045, 23.5943546)
3845Part1.Orientation = Vector3.new(-1.10000002, -179.919998, 84.0199966)
3846Part1.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
3847Part2.Parent = Model0
3848Part2.Material = Enum.Material.SmoothPlastic
3849Part2.BrickColor = BrickColor.new("Really black")
3850Part2.Rotation = Vector3.new(-178.899994, -0.0799999982, -95.9799957)
3851Part2.CanCollide = false
3852Part2.Size = Vector3.new(0.200000003, 0.200000003, 1.10000002)
3853Part2.CFrame = CFrame.new(-18.0173988, 2.61329341, 23.1558533, -0.104140192, 0.994561672, -0.00137326145, 0.994376838, 0.104147322, 0.0191858653, 0.0192245487, 0.000632480369, -0.999814987)
3854Part2.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3855Part2.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3856Part2.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3857Part2.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3858Part2.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3859Part2.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3860Part2.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
3861Part2.Position = Vector3.new(-18.0173988, 2.61329341, 23.1558533)
3862Part2.Orientation = Vector3.new(-1.10000002, -179.919998, 84.0199966)
3863Part2.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
3864Weld3.Name = "qCFrameWeldThingy"
3865Weld3.Parent = Part2
3866Weld3.C1 = CFrame.new(0.460000992, -0.309931993, -0.429933548, 1, -1.58654103e-07, 2.59842807e-07, 1.58654132e-07, 1, -1.10463297e-07, -2.59842778e-07, 1.1046334e-07, 1)
3867Weld3.Part0 = Part1
3868Weld3.Part1 = Part2
3869CFrameValue4.Name = "qRelativeCFrameWeldValue"
3870CFrameValue4.Parent = Part2
3871CFrameValue4.Value = CFrame.new(0.460000992, -0.309931993, -0.429933548, 1, -1.58654103e-07, 2.59842807e-07, 1.58654132e-07, 1, -1.10463297e-07, -2.59842778e-07, 1.1046334e-07, 1)
3872Part5.Parent = Model0
3873Part5.Material = Enum.Material.SmoothPlastic
3874Part5.BrickColor = BrickColor.new("Really black")
3875Part5.Rotation = Vector3.new(-178.899994, -0.0799999982, -95.9799957)
3876Part5.CanCollide = false
3877Part5.Size = Vector3.new(1.12, 0.200000003, 0.200000003)
3878Part5.CFrame = CFrame.new(-18.3741989, 3.04749036, 22.6944733, -0.104140192, 0.994561672, -0.00137326145, 0.994376838, 0.104147322, 0.0191858653, 0.0192245487, 0.000632480369, -0.999814987)
3879Part5.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3880Part5.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3881Part5.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3882Part5.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3883Part5.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3884Part5.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3885Part5.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
3886Part5.Position = Vector3.new(-18.3741989, 3.04749036, 22.6944733)
3887Part5.Orientation = Vector3.new(-1.10000002, -179.919998, 84.0199966)
3888Part5.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
3889Weld6.Name = "qCFrameWeldThingy"
3890Weld6.Parent = Part5
3891Weld6.C1 = CFrame.new(-4.19616699e-05, 0, -0.90004921, 1, -1.58654103e-07, 2.59842807e-07, 1.58654132e-07, 1, -1.10463297e-07, -2.59842778e-07, 1.1046334e-07, 1)
3892Weld6.Part0 = Part1
3893Weld6.Part1 = Part5
3894CFrameValue7.Name = "qRelativeCFrameWeldValue"
3895CFrameValue7.Parent = Part5
3896CFrameValue7.Value = CFrame.new(-4.19616699e-05, 0, -0.90004921, 1, -1.58654103e-07, 2.59842807e-07, 1.58654132e-07, 1, -1.10463297e-07, -2.59842778e-07, 1.1046334e-07, 1)
3897Part8.Parent = Model0
3898Part8.Material = Enum.Material.SmoothPlastic
3899Part8.BrickColor = BrickColor.new("Really black")
3900Part8.Rotation = Vector3.new(-178.899994, -0.0799999982, -95.9799957)
3901Part8.CanCollide = false
3902Part8.Size = Vector3.new(0.200000003, 0.200000003, 0.980000019)
3903Part8.CFrame = CFrame.new(-18.4313564, 3.49405909, 23.2131767, -0.104140192, 0.994561672, -0.00137326145, 0.994376838, 0.104147322, 0.0191858653, 0.0192245487, 0.000632480369, -0.999814987)
3904Part8.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3905Part8.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3906Part8.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3907Part8.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3908Part8.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3909Part8.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3910Part8.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
3911Part8.Position = Vector3.new(-18.4313564, 3.49405909, 23.2131767)
3912Part8.Orientation = Vector3.new(-1.10000002, -179.919998, 84.0199966)
3913Part8.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
3914Weld9.Name = "qCFrameWeldThingy"
3915Weld9.Parent = Part8
3916Weld9.C1 = CFrame.new(-0.46002388, 0.010010004, -0.390087128, 1, -1.58654103e-07, 2.59842807e-07, 1.58654132e-07, 1, -1.10463297e-07, -2.59842778e-07, 1.1046334e-07, 1)
3917Weld9.Part0 = Part1
3918Weld9.Part1 = Part8
3919CFrameValue10.Name = "qRelativeCFrameWeldValue"
3920CFrameValue10.Parent = Part8
3921CFrameValue10.Value = CFrame.new(-0.46002388, 0.010010004, -0.390087128, 1, -1.58654103e-07, 2.59842807e-07, 1.58654132e-07, 1, -1.10463297e-07, -2.59842778e-07, 1.1046334e-07, 1)
3922Part11.Parent = Model0
3923Part11.Material = Enum.Material.SmoothPlastic
3924Part11.BrickColor = BrickColor.new("Really black")
3925Part11.Rotation = Vector3.new(-178.899994, -0.0799999982, -95.9799957)
3926Part11.CanCollide = false
3927Part11.Size = Vector3.new(1.12, 0.200000003, 0.200000003)
3928Part11.CFrame = CFrame.new(-18.0659237, 3.07936549, 22.7147007, -0.104140192, 0.994561672, -0.00137326145, 0.994376838, 0.104147322, 0.0191858653, 0.0192245487, 0.000632480369, -0.999814987)
3929Part11.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3930Part11.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3931Part11.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3932Part11.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3933Part11.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3934Part11.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3935Part11.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
3936Part11.Position = Vector3.new(-18.0659237, 3.07936549, 22.7147007)
3937Part11.Orientation = Vector3.new(-1.10000002, -179.919998, 84.0199966)
3938Part11.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
3939Weld12.Name = "qCFrameWeldThingy"
3940Weld12.Parent = Part11
3941Weld12.C1 = CFrame.new(-2.28881836e-05, -0.309931993, -0.880012512, 1, -1.58654103e-07, 2.59842807e-07, 1.58654132e-07, 1, -1.10463297e-07, -2.59842778e-07, 1.1046334e-07, 1)
3942Weld12.Part0 = Part1
3943Weld12.Part1 = Part11
3944CFrameValue13.Name = "qRelativeCFrameWeldValue"
3945CFrameValue13.Parent = Part11
3946CFrameValue13.Value = CFrame.new(-2.28881836e-05, -0.309931993, -0.880012512, 1, -1.58654103e-07, 2.59842807e-07, 1.58654132e-07, 1, -1.10463297e-07, -2.59842778e-07, 1.1046334e-07, 1)
3947Part14.Parent = Model0
3948Part14.Material = Enum.Material.SmoothPlastic
3949Part14.BrickColor = BrickColor.new("Really black")
3950Part14.Rotation = Vector3.new(-178.899994, -0.0799999982, -95.9799957)
3951Part14.CanCollide = false
3952Part14.Size = Vector3.new(0.200000003, 0.200000003, 1.10000002)
3953Part14.CFrame = CFrame.new(-18.325676, 2.58143425, 23.1355782, -0.104140192, 0.994561672, -0.00137326145, 0.994376838, 0.104147322, 0.0191858653, 0.0192245487, 0.000632480369, -0.999814987)
3954Part14.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3955Part14.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3956Part14.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3957Part14.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3958Part14.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3959Part14.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3960Part14.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
3961Part14.Position = Vector3.new(-18.325676, 2.58143425, 23.1355782)
3962Part14.Orientation = Vector3.new(-1.10000002, -179.919998, 84.0199966)
3963Part14.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
3964Weld15.Name = "qCFrameWeldThingy"
3965Weld15.Parent = Part14
3966Weld15.C1 = CFrame.new(0.45996666, 0, -0.450017929, 1, -1.58654103e-07, 2.59842807e-07, 1.58654132e-07, 1, -1.10463297e-07, -2.59842778e-07, 1.1046334e-07, 1)
3967Weld15.Part0 = Part1
3968Weld15.Part1 = Part14
3969CFrameValue16.Name = "qRelativeCFrameWeldValue"
3970CFrameValue16.Parent = Part14
3971CFrameValue16.Value = CFrame.new(0.45996666, 0, -0.450017929, 1, -1.58654103e-07, 2.59842807e-07, 1.58654132e-07, 1, -1.10463297e-07, -2.59842778e-07, 1.1046334e-07, 1)
3972Part17.Parent = Model0
3973Part17.Material = Enum.Material.SmoothPlastic
3974Part17.BrickColor = BrickColor.new("Really black")
3975Part17.Rotation = Vector3.new(-178.899994, -0.0799999982, -95.9799957)
3976Part17.CanCollide = false
3977Part17.Size = Vector3.new(0.919999957, 0.200000003, 0.980000019)
3978Part17.CFrame = CFrame.new(-18.0756702, 3.16945815, 23.2065067, -0.104140192, 0.994561672, -0.00137326145, 0.994376838, 0.104147322, 0.0191858653, 0.0192245487, 0.000632480369, -0.999814987)
3979Part17.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3980Part17.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3981Part17.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3982Part17.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3983Part17.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3984Part17.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3985Part17.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
3986Part17.Position = Vector3.new(-18.0756702, 3.16945815, 23.2065067)
3987Part17.Orientation = Vector3.new(-1.10000002, -179.919998, 84.0199966)
3988Part17.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
3989Weld18.Name = "qCFrameWeldThingy"
3990Weld18.Parent = Part17
3991Weld18.C1 = CFrame.new(-0.100078583, -0.309931993, -0.390039444, 1, -1.58654103e-07, 2.59842807e-07, 1.58654132e-07, 1, -1.10463297e-07, -2.59842778e-07, 1.1046334e-07, 1)
3992Weld18.Part0 = Part1
3993Weld18.Part1 = Part17
3994CFrameValue19.Name = "qRelativeCFrameWeldValue"
3995CFrameValue19.Parent = Part17
3996CFrameValue19.Value = CFrame.new(-0.100078583, -0.309931993, -0.390039444, 1, -1.58654103e-07, 2.59842807e-07, 1.58654132e-07, 1, -1.10463297e-07, -2.59842778e-07, 1.1046334e-07, 1)
3997Part20.Name = "Middle"
3998Part20.Parent = Model0
3999Part20.BrickColor = BrickColor.new("Really black")
4000Part20.Transparency = 1
4001Part20.Rotation = Vector3.new(1.10000002, 0.0799999982, -84.0199966)
4002Part20.CanCollide = false
4003Part20.FormFactor = Enum.FormFactor.Symmetric
4004Part20.Size = Vector3.new(1.22000003, 2, 1)
4005Part20.CFrame = CFrame.new(-18.3028564, 3.0350101, 23.1542149, 0.104140192, 0.994561672, 0.00137326145, -0.994376838, 0.104147322, -0.0191858653, -0.0192245487, 0.000632480369, 0.999814987)
4006Part20.BottomSurface = Enum.SurfaceType.Smooth
4007Part20.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
4008Part20.Position = Vector3.new(-18.3028564, 3.0350101, 23.1542149)
4009Part20.Orientation = Vector3.new(1.10000002, 0.0799999982, -84.0199966)
4010Part20.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
4011Weld21.Name = "qCFrameWeldThingy"
4012Weld21.Parent = Part20
4013Weld21.C1 = CFrame.new(-0.0109596252, -0.0699470043, 0.44005394, -1, 1.58654103e-07, -2.59842807e-07, 1.58654132e-07, 1, -1.10463297e-07, 2.59842778e-07, -1.1046334e-07, -1)
4014Weld21.Part0 = Part1
4015Weld21.Part1 = Part20
4016CFrameValue22.Name = "qRelativeCFrameWeldValue"
4017CFrameValue22.Parent = Part20
4018CFrameValue22.Value = CFrame.new(-0.0109596252, -0.0699470043, 0.44005394, -1, 1.58654103e-07, -2.59842807e-07, 1.58654132e-07, 1, -1.10463297e-07, 2.59842778e-07, -1.1046334e-07, -1)
4019Part23.Parent = Model0
4020Part23.Material = Enum.Material.SmoothPlastic
4021Part23.BrickColor = BrickColor.new("Really black")
4022Part23.Rotation = Vector3.new(91.1100006, 5.98000002, -90.0799942)
4023Part23.Size = Vector3.new(0.45788303, 0.195007578, 0.253826499)
4024Part23.CFrame = CFrame.new(-18.0880146, 3.62485242, 23.4053211, -0.00137328415, 0.994561672, 0.1041402, 0.0191860739, 0.10414733, -0.994376838, -0.999814987, 0.000632479612, -0.0192247573)
4025Part23.BackSurface = Enum.SurfaceType.SmoothNoOutlines
4026Part23.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
4027Part23.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
4028Part23.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
4029Part23.RightSurface = Enum.SurfaceType.SmoothNoOutlines
4030Part23.TopSurface = Enum.SurfaceType.SmoothNoOutlines
4031Part23.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
4032Part23.Position = Vector3.new(-18.0880146, 3.62485242, 23.4053211)
4033Part23.Orientation = Vector3.new(83.9199982, 100.459999, 10.4399996)
4034Part23.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
4035Weld24.Name = "qCFrameWeldThingy"
4036Weld24.Parent = Part23
4037Weld24.C1 = CFrame.new(-0.200016022, -0.345209002, 0.558019638, -5.02921509e-08, 1.09553795e-07, 1, 1.64222385e-07, 1, -1.09553781e-07, -1, 1.64222385e-07, -5.02922148e-08)
4038Weld24.Part0 = Part1
4039Weld24.Part1 = Part23
4040CFrameValue25.Name = "qRelativeCFrameWeldValue"
4041CFrameValue25.Parent = Part23
4042CFrameValue25.Value = CFrame.new(-0.200016022, -0.345209002, 0.558019638, -5.02921509e-08, 1.09553795e-07, 1, 1.64222385e-07, 1, -1.09553781e-07, -1, 1.64222385e-07, -5.02922148e-08)
4043Part26.Parent = Model0
4044Part26.Material = Enum.Material.Neon
4045Part26.BrickColor = BrickColor.new("Lime green")
4046Part26.Rotation = Vector3.new(91.1100006, 5.98000002, -90.0799942)
4047Part26.Size = Vector3.new(0.152929291, 0.0389110669, 0.267852575)
4048Part26.CFrame = CFrame.new(-18.0813389, 3.63259411, 23.4090347, -0.00137328415, 0.994561672, 0.1041402, 0.0191860739, 0.10414733, -0.994376838, -0.999814987, 0.000632479612, -0.0192247573)
4049Part26.BackSurface = Enum.SurfaceType.SmoothNoOutlines
4050Part26.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
4051Part26.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
4052Part26.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
4053Part26.RightSurface = Enum.SurfaceType.SmoothNoOutlines
4054Part26.TopSurface = Enum.SurfaceType.SmoothNoOutlines
4055Part26.Color = Color3.new(1, 0, 0)
4056Part26.Position = Vector3.new(-18.0813389, 3.63259411, 23.4090347)
4057Part26.Orientation = Vector3.new(83.9199982, 100.459999, 10.4399996)
4058Part26.Color = Color3.new(1, 0, 0)
4059Weld27.Name = "qCFrameWeldThingy"
4060Weld27.Parent = Part26
4061Weld27.C1 = CFrame.new(-0.196443558, -0.352656007, 0.565093994, -5.02921509e-08, 1.09553795e-07, 1, 1.64222385e-07, 1, -1.09553781e-07, -1, 1.64222385e-07, -5.02922148e-08)
4062Weld27.Part0 = Part1
4063Weld27.Part1 = Part26
4064CFrameValue28.Name = "qRelativeCFrameWeldValue"
4065CFrameValue28.Parent = Part26
4066CFrameValue28.Value = CFrame.new(-0.196443558, -0.352656007, 0.565093994, -5.02921509e-08, 1.09553795e-07, 1, 1.64222385e-07, 1, -1.09553781e-07, -1, 1.64222385e-07, -5.02922148e-08)
4067Part29.Parent = Model0
4068Part29.Material = Enum.Material.SmoothPlastic
4069Part29.BrickColor = BrickColor.new("Really black")
4070Part29.Rotation = Vector3.new(91.1100006, 5.98000002, -90.0799942)
4071Part29.Size = Vector3.new(0.399064094, 0.535459578, 0.200889423)
4072Part29.CFrame = CFrame.new(-18.2582397, 3.61599255, 23.4035149, -0.00137328415, 0.994561672, 0.1041402, 0.0191860739, 0.10414733, -0.994376838, -0.999814987, 0.000632479612, -0.0192247573)
4073Part29.BackSurface = Enum.SurfaceType.SmoothNoOutlines
4074Part29.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
4075Part29.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
4076Part29.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
4077Part29.RightSurface = Enum.SurfaceType.SmoothNoOutlines
4078Part29.TopSurface = Enum.SurfaceType.SmoothNoOutlines
4079Part29.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
4080Part29.Position = Vector3.new(-18.2582397, 3.61599255, 23.4035149)
4081Part29.Orientation = Vector3.new(83.9199982, 100.459999, 10.4399996)
4082Part29.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
4083Weld30.Name = "qCFrameWeldThingy"
4084Weld30.Parent = Part29
4085Weld30.C1 = CFrame.new(-0.201887131, -0.174986005, 0.566902161, -5.02921509e-08, 1.09553795e-07, 1, 1.64222385e-07, 1, -1.09553781e-07, -1, 1.64222385e-07, -5.02922148e-08)
4086Weld30.Part0 = Part1
4087Weld30.Part1 = Part29
4088CFrameValue31.Name = "qRelativeCFrameWeldValue"
4089CFrameValue31.Parent = Part29
4090CFrameValue31.Value = CFrame.new(-0.201887131, -0.174986005, 0.566902161, -5.02921509e-08, 1.09553795e-07, 1, 1.64222385e-07, 1, -1.09553781e-07, -1, 1.64222385e-07, -5.02922148e-08)
4091Part32.Parent = Model0
4092Part32.Material = Enum.Material.SmoothPlastic
4093Part32.BrickColor = BrickColor.new("Really black")
4094Part32.Rotation = Vector3.new(91.1100006, 5.98000002, -90.0799942)
4095Part32.Size = Vector3.new(0.399064094, 0.535459578, 0.200889423)
4096Part32.CFrame = CFrame.new(-18.2578926, 3.61577511, 22.8934994, -0.00137328415, 0.994561672, 0.1041402, 0.0191860739, 0.10414733, -0.994376838, -0.999814987, 0.000632479612, -0.0192247573)
4097Part32.BackSurface = Enum.SurfaceType.SmoothNoOutlines
4098Part32.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
4099Part32.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
4100Part32.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
4101Part32.RightSurface = Enum.SurfaceType.SmoothNoOutlines
4102Part32.TopSurface = Enum.SurfaceType.SmoothNoOutlines
4103Part32.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
4104Part32.Position = Vector3.new(-18.2578926, 3.61577511, 22.8934994)
4105Part32.Orientation = Vector3.new(83.9199982, 100.459999, 10.4399996)
4106Part32.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
4107Weld33.Name = "qCFrameWeldThingy"
4108Weld33.Parent = Part32
4109Weld33.C1 = CFrame.new(-0.711803436, -0.174986124, 0.556844711, -5.02921509e-08, 1.09553795e-07, 1, 1.64222385e-07, 1, -1.09553781e-07, -1, 1.64222385e-07, -5.02922148e-08)
4110Weld33.Part0 = Part1
4111Weld33.Part1 = Part32
4112CFrameValue34.Name = "qRelativeCFrameWeldValue"
4113CFrameValue34.Parent = Part32
4114CFrameValue34.Value = CFrame.new(-0.711803436, -0.174986124, 0.556844711, -5.02921509e-08, 1.09553795e-07, 1, 1.64222385e-07, 1, -1.09553781e-07, -1, 1.64222385e-07, -5.02922148e-08)
4115Part35.Parent = Model0
4116Part35.Material = Enum.Material.SmoothPlastic
4117Part35.BrickColor = BrickColor.new("Really black")
4118Part35.Rotation = Vector3.new(91.1100006, 5.98000002, -90.0799942)
4119Part35.Size = Vector3.new(0.45788303, 0.195007578, 0.253826499)
4120Part35.CFrame = CFrame.new(-18.0876789, 3.62475324, 22.8952656, -0.00137328415, 0.994561672, 0.1041402, 0.0191860739, 0.10414733, -0.994376838, -0.999814987, 0.000632479612, -0.0192247573)
4121Part35.BackSurface = Enum.SurfaceType.SmoothNoOutlines
4122Part35.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
4123Part35.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
4124Part35.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
4125Part35.RightSurface = Enum.SurfaceType.SmoothNoOutlines
4126Part35.TopSurface = Enum.SurfaceType.SmoothNoOutlines
4127Part35.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
4128Part35.Position = Vector3.new(-18.0876789, 3.62475324, 22.8952656)
4129Part35.Orientation = Vector3.new(83.9199982, 100.459999, 10.4399996)
4130Part35.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
4131Weld36.Name = "qCFrameWeldThingy"
4132Weld36.Parent = Part35
4133Weld36.C1 = CFrame.new(-0.709976196, -0.345209122, 0.548080444, -5.02921509e-08, 1.09553795e-07, 1, 1.64222385e-07, 1, -1.09553781e-07, -1, 1.64222385e-07, -5.02922148e-08)
4134Weld36.Part0 = Part1
4135Weld36.Part1 = Part35
4136CFrameValue37.Name = "qRelativeCFrameWeldValue"
4137CFrameValue37.Parent = Part35
4138CFrameValue37.Value = CFrame.new(-0.709976196, -0.345209122, 0.548080444, -5.02921509e-08, 1.09553795e-07, 1, 1.64222385e-07, 1, -1.09553781e-07, -1, 1.64222385e-07, -5.02922148e-08)
4139Part38.Parent = Model0
4140Part38.Material = Enum.Material.Neon
4141Part38.BrickColor = BrickColor.new("Lime green")
4142Part38.Rotation = Vector3.new(91.1100006, 5.98000002, -90.0799942)
4143Part38.Size = Vector3.new(0.152929291, 0.0389110669, 0.267852575)
4144Part38.CFrame = CFrame.new(-18.0809937, 3.63238764, 22.8990211, -0.00137328415, 0.994561672, 0.1041402, 0.0191860739, 0.10414733, -0.994376838, -0.999814987, 0.000632479612, -0.0192247573)
4145Part38.BackSurface = Enum.SurfaceType.SmoothNoOutlines
4146Part38.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
4147Part38.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
4148Part38.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
4149Part38.RightSurface = Enum.SurfaceType.SmoothNoOutlines
4150Part38.TopSurface = Enum.SurfaceType.SmoothNoOutlines
4151Part38.Color = Color3.new(1, 0, 0)
4152Part38.Position = Vector3.new(-18.0809937, 3.63238764, 22.8990211)
4153Part38.Orientation = Vector3.new(83.9199982, 100.459999, 10.4399996)
4154Part38.Color = Color3.new(1, 0, 0)
4155Weld39.Name = "qCFrameWeldThingy"
4156Weld39.Parent = Part38
4157Weld39.C1 = CFrame.new(-0.706357956, -0.352656126, 0.555047989, -5.02921509e-08, 1.09553795e-07, 1, 1.64222385e-07, 1, -1.09553781e-07, -1, 1.64222385e-07, -5.02922148e-08)
4158Weld39.Part0 = Part1
4159Weld39.Part1 = Part38
4160CFrameValue40.Name = "qRelativeCFrameWeldValue"
4161CFrameValue40.Parent = Part38
4162CFrameValue40.Value = CFrame.new(-0.706357956, -0.352656126, 0.555047989, -5.02921509e-08, 1.09553795e-07, 1, 1.64222385e-07, 1, -1.09553781e-07, -1, 1.64222385e-07, -5.02922148e-08)
4163
4164WELD2SUMLEG = Instance.new("Weld")
4165WELD2SUMLEG.Parent = Part20
4166WELD2SUMLEG.Name = "Ur faget"
4167WELD2SUMLEG.Part0 = Part20
4168WELD2SUMLEG.Part1 = game.Players.LocalPlayer.Character["Left Leg"]
4169
4170while wait() do KILLPART.CanCollide = false KILLPART.Locked = true KILLPART.Transparency = 1
4171
4172
4173if GAS == true then KILLPART.Parent = game.Players.LocalPlayer.Character elseif GAS == false then KILLPART.Parent = workspace.CurrentCamera end
4174 for i,v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
4175 if v:IsA("Humanoid") then
4176 v.Name = "Police"
4177 v.PlatformStand = false
4178 v.AutoRotate = true
4179 v.NameOcclusion = "NoOcclusion"
4180 v.DisplayDistanceType = "None"
4181 v.MaxHealth = math.huge
4182 v.Health = math.huge
4183 elseif v:IsA("BodyColors") then
4184v.HeadColor = BrickColor.new("Really black")
4185v.LeftArmColor = BrickColor.new("Really black")
4186v.LeftLegColor = BrickColor.new("Really black")
4187v.RightArmColor = BrickColor.new("Really black")
4188v.RightLegColor = BrickColor.new("Really black")
4189v.TorsoColor = BrickColor.new("Really black")
4190end
4191end
4192for i,ve in pairs(Head:GetChildren()) do
4193 if ve:IsA("Decal") then
4194 if ve.Name == "%&$%&·$B%$/%&RE&%/·W$%&V$%N%FACE" then
4195 ve.Texture = "http://www.roblox.com/asset/?id=19821051"
4196end
4197end
4198end
4199if Choke == true then game.Players.LocalPlayer.Character.Parent = workspace.CurrentCamera wait() game.Players.LocalPlayer.Character.Parent = workspace end
4200 for i,v in pairs(xd:GetChildren()) do
4201 if v:IsA("Part") then
4202 v.BackSurface = Enum.SurfaceType.SmoothNoOutlines
4203 v.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
4204 v.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
4205 v.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
4206 v.RightSurface = Enum.SurfaceType.SmoothNoOutlines
4207 v.TopSurface = Enum.SurfaceType.SmoothNoOutlines
4208 for i,ve in pairs(v:GetChildren()) do
4209 if ve:IsA("Decal") then
4210 if ve.Name == "%&$%&·$B%$/%&RE&%/·W$%&V$%N%FACE" then else
4211 ve:Destroy()
4212end
4213end
4214end
4215 for i,veee in pairs(v:GetChildren()) do
4216 if veee:IsA("Fire") then
4217 veee:Destroy()
4218end
4219end
4220 for i,veee in pairs(v:GetChildren()) do
4221 if veee:IsA("Smoke") then
4222 veee:Destroy()
4223end
4224end
4225end
4226end
4227if Secks == true
4228then
4229Secks = false
4230RemakeJoints = false
4231chatfunc("Denied, abuser.")
4232LS = Instance.new("Motor6D")
4233RS = Instance.new("Motor6D")
4234LH = Instance.new("Motor6D")
4235RH = Instance.new("Motor6D")
4236LS.Parent = game.Players.LocalPlayer.Character.Torso
4237LS.Name = "Left Shoulder"
4238LS.MaxVelocity = .1
4239RS.Parent = game.Players.LocalPlayer.Character.Torso
4240RS.Name = "Right Shoulder"
4241RS.MaxVelocity = .1
4242LH.Parent = game.Players.LocalPlayer.Character.Torso
4243LH.Name = "Left Hip"
4244LH.MaxVelocity = .1
4245RH.Parent = game.Players.LocalPlayer.Character.Torso
4246RH.Name = "Right Hip"
4247RH.MaxVelocity = .1
4248end
4249if RemakeJoints == true
4250then
4251Secks = false
4252RemakeJoints = false
4253LS = Instance.new("Motor6D")
4254RS = Instance.new("Motor6D")
4255LH = Instance.new("Motor6D")
4256RH = Instance.new("Motor6D")
4257LS.Parent = game.Players.LocalPlayer.Character.Torso
4258LS.Name = "Left Shoulder"
4259LS.MaxVelocity = .1
4260RS.Parent = game.Players.LocalPlayer.Character.Torso
4261RS.Name = "Right Shoulder"
4262RS.MaxVelocity = .1
4263LH.Parent = game.Players.LocalPlayer.Character.Torso
4264LH.Name = "Left Hip"
4265LH.MaxVelocity = .1
4266RH.Parent = game.Players.LocalPlayer.Character.Torso
4267RH.Name = "Right Hip"
4268RH.MaxVelocity = .1
4269end
4270for i,v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
4271 if v:IsA("Model") then
4272 if v.Name == "Nice thing" then v:Destroy() Secks = true chatfunc("Denied, abuser..") end
4273end
4274end
4275for i,v in pairs(game.Players.LocalPlayer.Character.Torso:GetChildren()) do
4276 if v:IsA("Weld") then
4277 if v.Name == "leftWeld" then v:Destroy() RemakeJoints = true chatfunc("/fixjoints") end
4278 if v.Name == "rightWeld" then v:Destroy() RemakeJoints = true chatfunc("/fixjoints") end
4279 if v.Name == "weld" then v:Destroy() RemakeJoints = true chatfunc("/fixjoints") end
4280 if v.Name == "Right Shoulder" then v:Destroy() RemakeJoints = true end
4281 if v.Name == "Left Shoulder" then v:Destroy() RemakeJoints = true chatfunc("/fixjoints") end
4282 if v.Name == "Right Hip" then v:Destroy() RemakeJoints = true chatfunc("/fixjoints") end
4283 if v.Name == "Left Hip" then v:Destroy() RemakeJoints = true chatfunc("/fixjoints") end
4284end
4285end
4286for i,v in pairs(game.Players.LocalPlayer.Character.Torso:GetChildren()) do
4287 if v:IsA("Part") then Secks = true v:Destroy() chatfunc("Denied, abuser..")
4288end
4289end
4290for i,v in pairs(game.Players.LocalPlayer.Character.Head:GetChildren()) do
4291 if v:IsA("Part") then v:Destroy() chatfunc("Denied, abuser..")
4292end
4293end
4294for i,v in pairs(game.Players.LocalPlayer.Character.Torso:GetChildren()) do
4295 if v:IsA("Model") then Secks = true v:Destroy() chatfunc("Denied, abuser..")
4296end
4297end
4298for i,v in pairs(game.Players.LocalPlayer.Character.Torso:GetChildren()) do
4299 if v:IsA("Motor6D") then
4300 if v.Name == "Right Shoulder"then
4301v.C0 = CFrame.new(1, 0.5, 0, 0, 0, 1, 0, 1, -0, -1, 0, 0)
4302v.C1 = CFrame.new(-0.5, 0.5, 0, 0, 0, 1, 0, 1, -0, -1, 0, 0)
4303v.Part0 = game.Players.LocalPlayer.Character.Torso
4304v.Part1 = game.Players.LocalPlayer.Character["Right Arm"]
4305 elseif v.Name == "Left Shoulder" then
4306v.C0 = CFrame.new(-1, 0.5, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0)
4307v.C1 = CFrame.new(0.5, 0.5, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0)
4308v.Part0 = game.Players.LocalPlayer.Character.Torso
4309v.Part1 = game.Players.LocalPlayer.Character["Left Arm"]
4310 elseif v.Name == "Right Hip" then
4311v.C0 = CFrame.new(1, -1, 0, 0, 0, 1, 0, 1, -0, -1, 0, 0)
4312v.C1 = CFrame.new(0.5, 1, 0, 0, 0, 1, 0, 1, -0, -1, 0, 0)
4313v.Part0 = game.Players.LocalPlayer.Character.Torso
4314v.Part1 = game.Players.LocalPlayer.Character["Right Leg"]
4315 elseif v.Name == "Left Hip" then
4316v.C0 = CFrame.new(-1, -1, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0)
4317v.C1 = CFrame.new(-0.5, 1, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0)
4318v.Part0 = game.Players.LocalPlayer.Character.Torso
4319v.Part1 = game.Players.LocalPlayer.Character["Left Leg"]
4320-- elseif v.Name == "Neck" then
4321--v.C0 = CFrame.new(0, 1, 0, -1, 0, 0, 0, 0, 1, 0, 1, -0)
4322--v.C1 = CFrame.new(0, -0.5, 0, -1, 0, 0, 0, 0, 1, 0, 1, -0)
4323--v.Part0 = game.Players.LocalPlayer.Character.Torso
4324--v.Part1 = game.Players.LocalPlayer.Character["Head"]
4325end
4326end
4327end
4328
4329for i,v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
4330 if v:IsA("LocalScript") then
4331 v.Disabled = false v.Archivable = false
4332end
4333end
4334
4335for i,v in pairs(game.Players.LocalPlayer.Character.Torso:GetChildren()) do
4336 if v:IsA("Smoke") then
4337 v:Destroy()
4338end
4339end
4340
4341for i,v in pairs(game.Players.LocalPlayer.Character.HumanoidRootPart:GetChildren()) do
4342 if v:IsA("Motor6D") then
4343v.C0 = CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, 1, 0, 1, -0)
4344v.C1 = CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, 1, 0, 1, -0)
4345end
4346end
4347
4348
4349for i,v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
4350 if v:IsA("Part") then
4351 if v.Name == "TOUCHPART" then
4352 v.Anchored = true
4353 v.Locked = true
4354 v.Archivable = false
4355 v.Transparency = 1
4356 v.BackSurface = Enum.SurfaceType.SmoothNoOutlines
4357 v.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
4358 v.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
4359 v.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
4360 v.RightSurface = Enum.SurfaceType.SmoothNoOutlines
4361 v.TopSurface = Enum.SurfaceType.SmoothNoOutlines
4362 elseif v.Name == "HumanoidRootPart" then
4363 v.Anchored = false
4364 v.Locked = true
4365 v.Archivable = false
4366 v.Transparency = 1
4367 v.BackSurface = Enum.SurfaceType.SmoothNoOutlines
4368 v.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
4369 v.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
4370 v.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
4371 v.RightSurface = Enum.SurfaceType.SmoothNoOutlines
4372 v.TopSurface = Enum.SurfaceType.SmoothNoOutlines
4373 else
4374 v.Anchored = false
4375 v.Locked = true
4376 v.Archivable = false
4377 v.Transparency = 0
4378 v.BackSurface = Enum.SurfaceType.SmoothNoOutlines
4379 v.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
4380 v.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
4381 v.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
4382 v.RightSurface = Enum.SurfaceType.SmoothNoOutlines
4383 v.TopSurface = Enum.SurfaceType.SmoothNoOutlines end
4384for i,ve in pairs(v:GetChildren()) do
4385 if ve:IsA("Decal") then
4386 if ve.Name == "%&$%&·$B%$/%&RE&%/·W$%&V$%N%FACE" then else
4387 ve:Destroy()
4388end
4389end
4390end
4391 for i,veee in pairs(v:GetChildren()) do
4392 if veee:IsA("Fire") then
4393 veee:Destroy()
4394end
4395end
4396 for i,veee in pairs(v:GetChildren()) do
4397 if veee:IsA("Smoke") then
4398 veee:Destroy()
4399end
4400end
4401 for i,veee in pairs(v:GetChildren()) do
4402 if veee:IsA("SelectionBox") then
4403 veee:Destroy()
4404end
4405end
4406 for i,veee in pairs(v:GetChildren()) do
4407 if veee:IsA("ParticleEmitter") then
4408 veee:Destroy()
4409end
4410end
4411for i,vew in pairs(v:GetChildren()) do
4412 if vew:IsA("BodyPosition") then
4413 vew:Destroy() game.Players.LocalPlayer.Character.Parent = workspace.CurrentCamera wait(5) game.Players.LocalPlayer.Character.Parent = workspace chatfunc(NoLift[math.random(1, #NoLift)])
4414end
4415end
4416for i,vew in pairs(v:GetChildren()) do
4417 if vew:IsA("BodyVelocity") then
4418 vew:Destroy() chatfunc(deny[math.random(1, #deny)])
4419 for i,vwe in pairs(game.Players.LocalPlayer.Character.Torso:GetChildren()) do
4420 if vwe:IsA("Sound") then
4421 vwe:Destroy()
4422end
4423end
4424end
4425end
4426end
4427end
4428 for i,v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
4429 if v:IsA("Model") then
4430 for i,vee in pairs(v:GetChildren()) do
4431 if vee:IsA("Part") then
4432 if vee.Name == "Middle" then
4433 vee.Anchored = false
4434 vee.Locked = true
4435 vee.Archivable = false
4436 vee.Transparency = 1
4437 vee.BackSurface = Enum.SurfaceType.SmoothNoOutlines
4438 vee.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
4439 vee.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
4440 vee.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
4441 vee.RightSurface = Enum.SurfaceType.SmoothNoOutlines
4442 vee.TopSurface = Enum.SurfaceType.SmoothNoOutlines
4443 elseif vee.Name == "Midel" then
4444 vee.Anchored = false
4445 vee.Locked = true
4446 vee.Archivable = false
4447 vee.Transparency = 1
4448 vee.BackSurface = Enum.SurfaceType.SmoothNoOutlines
4449 vee.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
4450 vee.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
4451 vee.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
4452 vee.RightSurface = Enum.SurfaceType.SmoothNoOutlines
4453 vee.TopSurface = Enum.SurfaceType.SmoothNoOutlines
4454 elseif vee.Name == "Right Arm" then
4455 vee.Anchored = false
4456 vee.Locked = true
4457 vee.Archivable = false
4458 vee.Transparency = 1
4459 vee.BackSurface = Enum.SurfaceType.SmoothNoOutlines
4460 vee.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
4461 vee.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
4462 vee.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
4463 vee.RightSurface = Enum.SurfaceType.SmoothNoOutlines
4464 vee.TopSurface = Enum.SurfaceType.SmoothNoOutlines
4465 else
4466 vee.BackSurface = Enum.SurfaceType.SmoothNoOutlines
4467 vee.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
4468 vee.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
4469 vee.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
4470 vee.RightSurface = Enum.SurfaceType.SmoothNoOutlines
4471 vee.TopSurface = Enum.SurfaceType.SmoothNoOutlines
4472 vee.Anchored = false
4473 vee.Locked = true
4474 vee.Archivable = false
4475 vee.Transparency = 0 end
4476 for i,veee in pairs(vee:GetChildren()) do
4477 if veee:IsA("Decal") then
4478 veee:Destroy()
4479end
4480end
4481 for i,veee in pairs(vee:GetChildren()) do
4482 if veee:IsA("SelectionBox") then
4483 veee:Destroy()
4484end
4485end
4486 for i,veee in pairs(vee:GetChildren()) do
4487 if veee:IsA("Fire") then
4488 veee:Destroy()
4489end
4490end
4491 for i,veee in pairs(vee:GetChildren()) do
4492 if veee:IsA("Smoke") then
4493 veee:Destroy()
4494end
4495end
4496 for i,veee in pairs(vee:GetChildren()) do
4497 if veee:IsA("ParticleEmitter") then
4498 veee:Destroy()
4499end
4500end
4501for i,veee in pairs(vee:GetChildren()) do
4502 if veee:IsA("BodyVelocity") then
4503 veee:Destroy() chatfunc(deny[math.random(1, #deny)])
4504 for i,vwe in pairs(game.Players.LocalPlayer.Character.Torso:GetChildren()) do
4505 if vwe:IsA("Sound") then
4506 vwe:Destroy()
4507end
4508end
4509end
4510end
4511for i,vewe in pairs(vee:GetChildren()) do
4512 if vewe:IsA("BodyPosition") then
4513 vewe:Destroy() game.Players.LocalPlayer.Character.Parent = workspace.CurrentCamera wait(5) game.Players.LocalPlayer.Character.Parent = workspace chatfunc(NoLift[math.random(1, #NoLift)])
4514end
4515end
4516end
4517end
4518end
4519end
4520
4521 local CamCF = Cam.CoordinateFrame
4522 if ((IsR6 and Body["Torso"]) or Body["UpperTorso"])~=nil and Body["Head"]~=nil then --[Check for the Torso and Head...]
4523 local TrsoLV = Trso.CFrame.lookVector
4524 local HdPos = Head.CFrame.p
4525 if IsR6 and Neck or Neck and Waist then --[Make sure the Neck still exists.]
4526 if Cam.CameraSubject:IsDescendantOf(Body) or Cam.CameraSubject:IsDescendantOf(Plr) then
4527 local Dist = nil;
4528 local Diff = nil;
4529 if not MseGuide then --[If not tracking the Mouse then get the Camera.]
4530 Dist = (Head.CFrame.p-CamCF.p).magnitude
4531 Diff = Head.CFrame.Y-CamCF.Y
4532 if not IsR6 then --[R6 and R15 Neck rotation C0s are different; R15: X axis inverted and Z is now the Y.]
4533 Neck.C0 = Neck.C0:lerp(NeckOrgnC0*Ang((aSin(Diff/Dist)*HeadVertFactor), -(((HdPos-CamCF.p).Unit):Cross(TrsoLV)).Y*HeadHorFactor, 0), UpdateSpeed/2)
4534 Waist.C0 = Waist.C0:lerp(WaistOrgnC0*Ang((aSin(Diff/Dist)*BodyVertFactor), -(((HdPos-CamCF.p).Unit):Cross(TrsoLV)).Y*BodyHorFactor, 0), UpdateSpeed/2)
4535 else --[R15s actually have the properly oriented Neck CFrame.]
4536 Neck.C0 = Neck.C0:lerp(NeckOrgnC0*Ang(-(aSin(Diff/Dist)*HeadVertFactor), 0, -(((HdPos-CamCF.p).Unit):Cross(TrsoLV)).Y*HeadHorFactor),UpdateSpeed/2)
4537 end
4538 else
4539 local Point = Mouse.Hit.p
4540 Dist = (Head.CFrame.p-Point).magnitude
4541 Diff = Head.CFrame.Y-Point.Y
4542 if not IsR6 then
4543 Neck.C0 = Neck.C0:lerp(NeckOrgnC0*Ang(-(aTan(Diff/Dist)*HeadVertFactor), (((HdPos-Point).Unit):Cross(TrsoLV)).Y*HeadHorFactor, 0), UpdateSpeed/2)
4544 Waist.C0 = Waist.C0:lerp(WaistOrgnC0*Ang(-(aTan(Diff/Dist)*BodyVertFactor), (((HdPos-Point).Unit):Cross(TrsoLV)).Y*BodyHorFactor, 0), UpdateSpeed/2)
4545 else
4546 Neck.C0 = Neck.C0:lerp(NeckOrgnC0*Ang((aTan(Diff/Dist)*HeadVertFactor), 0, (((HdPos-Point).Unit):Cross(TrsoLV)).Y*HeadHorFactor), UpdateSpeed/2)
4547 end
4548 end
4549 end
4550 end
4551 end
4552 if TurnCharacterToMouse == true then
4553 Hum.AutoRotate = false
4554 Core.CFrame = Core.CFrame:lerp(CFrame.new(Core.Position, Vector3.new(Mouse.Hit.p.x, Core.Position.Y, Mouse.Hit.p.z)), UpdateSpeed / 2)
4555 else
4556 Hum.AutoRotate = true
4557 end
4558
4559 end