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