View difference between Paste ID: te8X5i9r and TZjbvtjA
SHOW: | | - or go back to the newest paste.
1
if game:GetService("RunService"):IsClient() then error("Script must be server-side in order to work; use h/ and not hl/") end
2
local Player,game,owner = owner,game
3
local RealPlayer = Player
4
do
5
    print("FE Compatibility code by Mokiros")
6
    local rp = RealPlayer
7
    script.Parent = rp.Character
8
   
9
    --RemoteEvent for communicating
10
    local Event = Instance.new("RemoteEvent")
11
    Event.Name = "UserInput_Event"
12
 
13
    --Fake event to make stuff like Mouse.KeyDown work
14
    local function fakeEvent()
15
        local t = {_fakeEvent=true,Functions={},Connect=function(self,f)table.insert(self.Functions,f) end}
16
        t.connect = t.Connect
17
        return t
18
    end
19
 
20
    --Creating fake input objects with fake variables
21
    local m = {Target=nil,Hit=CFrame.new(),KeyUp=fakeEvent(),KeyDown=fakeEvent(),Button1Up=fakeEvent(),Button1Down=fakeEvent()}
22
    local UIS = {InputBegan=fakeEvent(),InputEnded=fakeEvent()}
23
    local CAS = {Actions={},BindAction=function(self,name,fun,touch,...)
24
        CAS.Actions[name] = fun and {Name=name,Function=fun,Keys={...}} or nil
25
    end}
26
    --Merged 2 functions into one by checking amount of arguments
27
    CAS.UnbindAction = CAS.BindAction
28
 
29
    --This function will trigger the events that have been :Connect()'ed
30
    local function te(self,ev,...)
31
        local t = m[ev]
32
        if t and t._fakeEvent then
33
            for _,f in pairs(t.Functions) do
34
                f(...)
35
            end
36
        end
37
    end
38
    m.TrigEvent = te
39
    UIS.TrigEvent = te
40
 
41
    Event.OnServerEvent:Connect(function(plr,io)
42
        if plr~=rp then return end
43
        m.Target = io.Target
44
        m.Hit = io.Hit
45
        if not io.isMouse then
46
            local b = io.UserInputState == Enum.UserInputState.Begin
47
            if io.UserInputType == Enum.UserInputType.MouseButton1 then
48
                return m:TrigEvent(b and "Button1Down" or "Button1Up")
49
            end
50
            for _,t in pairs(CAS.Actions) do
51
                for _,k in pairs(t.Keys) do
52
                    if k==io.KeyCode then
53
                        t.Function(t.Name,io.UserInputState,io)
54
                    end
55
                end
56
            end
57
            m:TrigEvent(b and "KeyDown" or "KeyUp",io.KeyCode.Name:lower())
58
            UIS:TrigEvent(b and "InputBegan" or "InputEnded",io,false)
59
        end
60
    end)
61
    Event.Parent = NLS([==[
62
    local Player = game:GetService("Players").LocalPlayer
63
    local Event = script:WaitForChild("UserInput_Event")
64
 
65
    local Mouse = Player:GetMouse()
66
    local UIS = game:GetService("UserInputService")
67
    local input = function(io,a)
68
        if a then return end
69
        --Since InputObject is a client-side instance, we create and pass table instead
70
        Event:FireServer({KeyCode=io.KeyCode,UserInputType=io.UserInputType,UserInputState=io.UserInputState,Hit=Mouse.Hit,Target=Mouse.Target})
71
    end
72
    UIS.InputBegan:Connect(input)
73
    UIS.InputEnded:Connect(input)
74
 
75
    local h,t
76
    --Give the server mouse data 30 times every second, but only if the values changed
77
    --If player is not moving their mouse, client won't fire events
78
    while wait(1/30) do
79
        if h~=Mouse.Hit or t~=Mouse.Target then
80
            h,t=Mouse.Hit,Mouse.Target
81
            Event:FireServer({isMouse=true,Target=t,Hit=h})
82
        end
83
    end]==],Player.Character)
84
 
85
    ----Sandboxed game object that allows the usage of client-side methods and services
86
    --Real game object
87
    local _rg = game
88
 
89
    --Metatable for fake service
90
    local fsmt = {
91
        __index = function(self,k)
92
            local s = rawget(self,"_RealService")
93
            if s then return s[k] end
94
        end,
95
        __newindex = function(self,k,v)
96
            local s = rawget(self,"_RealService")
97
            if s then s[k]=v end
98
        end,
99
        __call = function(self,...)
100
            local s = rawget(self,"_RealService")
101
            if s then return s(...) end
102
        end
103
    }
104
    local function FakeService(t,RealService)
105
        t._RealService = typeof(RealService)=="string" and _rg:GetService(RealService) or RealService
106
        return setmetatable(t,fsmt)
107
    end
108
 
109
    --Fake game object
110
    local g = {
111
        GetService = function(self,s)
112
            return self[s]
113
        end,
114
        Players = FakeService({
115
            LocalPlayer = FakeService({GetMouse=function(self)return m end},Player)
116
        },"Players"),
117
        UserInputService = FakeService(UIS,"UserInputService"),
118
        ContextActionService = FakeService(CAS,"ContextActionService"),
119
    }
120
    rawset(g.Players,"localPlayer",g.Players.LocalPlayer)
121
    g.service = g.GetService
122
   
123
    g.RunService = FakeService({
124
        RenderStepped = _rg:GetService("RunService").Heartbeat,
125
        BindToRenderStep = function(self,name,_,fun)
126
            self._btrs[name] = self.Heartbeat:Connect(fun)
127
        end,
128
        UnbindFromRenderStep = function(self,name)
129
            self._btrs[name]:Disconnect()
130
        end,
131
    },"RunService")
132
 
133
    setmetatable(g,{
134
        __index=function(self,s)
135
            return _rg:GetService(s) or typeof(_rg[s])=="function"
136
            and function(_,...)return _rg[s](_rg,...)end or _rg[s]
137
        end,
138
        __newindex = fsmt.__newindex,
139
        __call = fsmt.__call
140
    })
141
    --Changing owner to fake player object to support owner:GetMouse()
142
    game,owner = g,g.Players.LocalPlayer
143
end
144
145
--By Rufus14
146
--Converted with ttyyuu12345's model to script plugin v4
147
mouse = game.Players.LocalPlayer:GetMouse()
148
game.Players.LocalPlayer.Character.Humanoid:SetStateEnabled(Enum.HumanoidStateType.Dead, false)
149
local txtfag = Instance.new("BillboardGui", game.Players.LocalPlayer.Character.Head)
150
txtfag.Adornee = suckadick
151
txtfag.Name = "kys nigga"
152
txtfag.Size = UDim2.new(2, 0, 1.2, 0)
153
txtfag.StudsOffset = Vector3.new(-5, 3, 0)
154
local textfag = Instance.new("TextLabel", txtfag)
155
textfag.Size = UDim2.new(6, 0, 1, 0)
156
textfag.FontSize = "Size8"
157
textfag.TextScaled = true
158
textfag.TextTransparency = 0
159
textfag.BackgroundTransparency = 1
160
textfag.TextTransparency = 0
161
textfag.TextStrokeTransparency = 0
162
textfag.Font = "Cartoon"
163
textfag.TextStrokeColor3 = Color3.new(0, 1, 0)
164
v = Instance.new("Part")
165
v.Name = "ColorBrick"
166
v.Parent = part
167
v.FormFactor = "Symmetric"
168
v.Anchored = true
169
v.CanCollide = false
170
v.BottomSurface = "Smooth"
171
v.TopSurface = "Smooth"
172
v.Size = Vector3.new(10, 5, 3)
173
v.Transparency = 0.7
174
v.BrickColor = game.Players.LocalPlayer.Character.Torso.BrickColor
175
v.Transparency = 1
176
textfag.TextColor3 = v.BrickColor.Color
177
textfag.TextStrokeColor3 = Color3.new(0, 0, 0)
178
v.Shape = "Block"
179
textfag.Text = "Script By Rufus14"
180
wait(2)
181
textfag.Text = "lol"
182
wait(0.3)
183
textfag.Text = game.Players.LocalPlayer.Character.Name.." the Content Cop"
184
local music = Instance.new("Sound", game.Players.LocalPlayer.Character.Head)
185
music.Volume = 10
186
music.SoundId = "rbxassetid://515347026"
187
music:Play()
188
music.Looped = true
189
music.Name = "Youfaggot"
190
cloneofmusic = music:Clone()
191
alert = Instance.new("Sound", game.Players.LocalPlayer.Character.Head)
192
alert.Volume = 10
193
alert.SoundId = "rbxassetid://1011639456"
194
game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 20
195
--Converted with ttyyuu12345's model to script plugin v4
196
function sandbox(var,func)
197
	local env = getfenv(func)
198
	local newenv = setmetatable({},{
199
		__index = function(self,k)
200
			if k=="script" then
201
				return var
202
			else
203
				return env[k]
204
			end
205
		end,
206
	})
207
	setfenv(func,newenv)
208
	return func
209
end
210
cors = {}
211
mas = Instance.new("Model",game:GetService("Lighting"))
212
Model0 = Instance.new("Model")
213
Part1 = Instance.new("Part")
214
Part2 = Instance.new("Part")
215
Part3 = Instance.new("Part")
216
Part4 = Instance.new("Part")
217
Part5 = Instance.new("Part")
218
Part6 = Instance.new("Part")
219
Part7 = Instance.new("Part")
220
Part8 = Instance.new("Part")
221
Part9 = Instance.new("Part")
222
Model0.Name = "Jailol"
223
Model0.Parent = mas
224
Part1.Parent = Model0
225
Part1.Material = Enum.Material.Brick
226
Part1.BrickColor = BrickColor.new("Crimson")
227
Part1.Size = Vector3.new(27.2409039, 20.9545422, 4.19090843)
228
Part1.CFrame = CFrame.new(-14.9545441, 10.4772959, -87.8842926, 1, 0, 0, 0, 1, 0, 0, 0, 1)
229
Part1.BottomSurface = Enum.SurfaceType.Smooth
230
Part1.TopSurface = Enum.SurfaceType.Smooth
231
Part1.Color = Color3.new(0.584314, 0.0470588, 0.0470588)
232
Part1.Position = Vector3.new(-14.9545441, 10.4772959, -87.8842926)
233
Part1.Color = Color3.new(0.584314, 0.0470588, 0.0470588)
234
Part2.Parent = Model0
235
Part2.Material = Enum.Material.Brick
236
Part2.BrickColor = BrickColor.new("Crimson")
237
Part2.Size = Vector3.new(27.2409039, 20.9545422, 4.19090843)
238
Part2.CFrame = CFrame.new(26.9545403, 10.4772959, -87.8842926, 1, 0, 0, 0, 1, 0, 0, 0, 1)
239
Part2.BottomSurface = Enum.SurfaceType.Smooth
240
Part2.TopSurface = Enum.SurfaceType.Smooth
241
Part2.Color = Color3.new(0.584314, 0.0470588, 0.0470588)
242
Part2.Position = Vector3.new(26.9545403, 10.4772959, -87.8842926)
243
Part2.Color = Color3.new(0.584314, 0.0470588, 0.0470588)
244
Part3.Name = "GlassDoor"
245
Part3.Parent = Model0
246
Part3.Material = Enum.Material.Glass
247
Part3.BrickColor = BrickColor.new("Dark stone grey")
248
Part3.Transparency = 0.55000001192093
249
Part3.Size = Vector3.new(14.6681786, 20.9545422, 4.19090843)
250
Part3.CFrame = CFrame.new(5.99999619, 10.4772959, -87.8842926, 1, 0, 0, 0, 1, 0, 0, 0, 1)
251
Part3.BottomSurface = Enum.SurfaceType.Smooth
252
Part3.TopSurface = Enum.SurfaceType.Smooth
253
Part3.Color = Color3.new(0.392157, 0.392157, 0.392157)
254
Part3.Position = Vector3.new(5.99999619, 10.4772959, -87.8842926)
255
Part3.Color = Color3.new(0.392157, 0.392157, 0.392157)
256
Part4.Parent = Model0
257
Part4.Material = Enum.Material.Brick
258
Part4.BrickColor = BrickColor.new("Crimson")
259
Part4.Rotation = Vector3.new(0, -90, 0)
260
Part4.Size = Vector3.new(53.4340782, 20.9545422, 4.19090843)
261
Part4.CFrame = CFrame.new(38.4795341, 10.4772959, -116.696777, 0, 0, -1, 0, 1, 0, 1, 0, 0)
262
Part4.BottomSurface = Enum.SurfaceType.Smooth
263
Part4.TopSurface = Enum.SurfaceType.Smooth
264
Part4.Color = Color3.new(0.584314, 0.0470588, 0.0470588)
265
Part4.Position = Vector3.new(38.4795341, 10.4772959, -116.696777)
266
Part4.Orientation = Vector3.new(0, -90, 0)
267
Part4.Color = Color3.new(0.584314, 0.0470588, 0.0470588)
268
Part5.Parent = Model0
269
Part5.Material = Enum.Material.Brick
270
Part5.BrickColor = BrickColor.new("Crimson")
271
Part5.Rotation = Vector3.new(0, -90, 0)
272
Part5.Size = Vector3.new(53.4340782, 20.9545422, 4.19090843)
273
Part5.CFrame = CFrame.new(-26.4795418, 10.4772959, -116.696777, 0, 0, -1, 0, 1, 0, 1, 0, 0)
274
Part5.BottomSurface = Enum.SurfaceType.Smooth
275
Part5.TopSurface = Enum.SurfaceType.Smooth
276
Part5.Color = Color3.new(0.584314, 0.0470588, 0.0470588)
277
Part5.Position = Vector3.new(-26.4795418, 10.4772959, -116.696777)
278
Part5.Orientation = Vector3.new(0, -90, 0)
279
Part5.Color = Color3.new(0.584314, 0.0470588, 0.0470588)
280
Part6.Parent = Model0
281
Part6.Material = Enum.Material.Brick
282
Part6.BrickColor = BrickColor.new("Crimson")
283
Part6.Rotation = Vector3.new(-180, 0, -180)
284
Part6.Size = Vector3.new(60.7681732, 20.9545422, 4.19090843)
285
Part6.CFrame = CFrame.new(5.99999619, 10.4772959, -141.318375, -1, 0, 0, 0, 1, 0, 0, 0, -1)
286
Part6.BottomSurface = Enum.SurfaceType.Smooth
287
Part6.TopSurface = Enum.SurfaceType.Smooth
288
Part6.Color = Color3.new(0.584314, 0.0470588, 0.0470588)
289
Part6.Position = Vector3.new(5.99999619, 10.4772959, -141.318375)
290
Part6.Orientation = Vector3.new(0, 180, 0)
291
Part6.Color = Color3.new(0.584314, 0.0470588, 0.0470588)
292
Part7.Parent = Model0
293
Part7.Material = Enum.Material.Glass
294
Part7.BrickColor = BrickColor.new("Really black")
295
Part7.Transparency = 0.55000001192093
296
Part7.Size = Vector3.new(61.1681786, 0.0900000036, 49.6909103)
297
Part7.CFrame = CFrame.new(5.91590881, 0.0546672344, -114.696777, 1, 0, 0, 0, 1, 0, 0, 0, 1)
298
Part7.BottomSurface = Enum.SurfaceType.Smooth
299
Part7.TopSurface = Enum.SurfaceType.Smooth
300
Part7.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
301
Part7.Position = Vector3.new(5.91590881, 0.0546672344, -114.696777)
302
Part7.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
303
Part7.Name = "Floor"
304
function parttouchedddd(part)
305
	local humanoid = part.Parent:findFirstChildOfClass("Humanoid")
306
	if humanoid then
307
		if humanoid.Parent.Name ~= game.Players.LocalPlayer.Name then
308
			for i,v in pairs(humanoid.Parent:GetChildren()) do
309
				if v.ClassName == "LocalScript" or v.ClassName == "Script" or v.ClassName == "Sound" then
310
					v:Remove()
311
				end
312
				for q,w in pairs(v:GetChildren()) do
313
					if w.ClassName == "LocalScript" or w.ClassName == "Script" or w.ClassName == "Sound" then
314
						w:Remove()
315
					end
316
				end
317
			end
318
		end
319
	end
320
end
321
Part7.Touched:connect(parttouchedddd)
322
Part8.Parent = Model0
323
Part8.Material = Enum.Material.Glass
324
Part8.BrickColor = BrickColor.new("Teal")
325
Part8.Transparency = 0.55000001192093
326
Part8.Size = Vector3.new(69.1681824, 0.45454216, 57.6909103)
327
Part8.CFrame = CFrame.new(5.915905, 21.1818428, -114.696777, 1, 0, 0, 0, 1, 0, 0, 0, 1)
328
Part8.BottomSurface = Enum.SurfaceType.Smooth
329
Part8.TopSurface = Enum.SurfaceType.Smooth
330
Part8.Color = Color3.new(0.0784314, 1, 0.862745)
331
Part8.Position = Vector3.new(5.915905, 21.1818428, -114.696777)
332
Part8.Color = Color3.new(0.0784314, 1, 0.862745)
333
Part9.Name = "wow"
334
Part9.Parent = Model0
335
Part9.Material = Enum.Material.Concrete
336
Part9.BrickColor = BrickColor.new("Lime green")
337
Part9.Rotation = Vector3.new(-180, 0, -165)
338
Part9.Anchored = true
339
Part9.Size = Vector3.new(14.7681732, 6.70454216, 0.190908432)
340
Part9.CFrame = CFrame.new(2.99999595, 11.2613897, -139.068375, -0.965925872, 0.258818984, 0, 0.258818984, 0.965925872, 0, 0, 0, -1)
341
Part9.BottomSurface = Enum.SurfaceType.Smooth
342
Part9.TopSurface = Enum.SurfaceType.Smooth
343
Part9.Color = Color3.new(0.054902, 1, 0.0392157)
344
Part9.Position = Vector3.new(2.99999595, 11.2613897, -139.068375)
345
Part9.Orientation = Vector3.new(0, 180, 15)
346
Part9.Color = Color3.new(0.054902, 1, 0.0392157)
347
for i,v in pairs(mas:GetChildren()) do
348
	v.Parent = game:GetService("Players").LocalPlayer.Character
349
	pcall(function() v:MakeJoints() end)
350
end
351
mas:Destroy()
352
for i,v in pairs(cors) do
353
	spawn(function()
354
		pcall(v)
355
	end)
356
end
357
--Converted with ttyyuu12345's model to script plugin v4
358
function sandbox(var,func)
359
	local env = getfenv(func)
360
	local newenv = setmetatable({},{
361
		__index = function(self,k)
362
			if k=="script" then
363
				return var
364
			else
365
				return env[k]
366
			end
367
		end,
368
	})
369
	setfenv(func,newenv)
370
	return func
371
end
372
cors = {}
373
mas = Instance.new("Model",game:GetService("Lighting"))
374
Part0 = Instance.new("Part")
375
Part0.Name = "Posof"
376
Part0.Parent = mas
377
Part0.Material = Enum.Material.Glass
378
Part0.BrickColor = BrickColor.new("Dark stone grey")
379
Part0.Transparency = 0.55000001192093
380
Part0.Anchored = true
381
Part0.CanCollide = false
382
Part0.Size = Vector3.new(14.6681786, 0.0500000007, 4.19090843)
383
Part0.CFrame = Part3.CFrame * CFrame.new(0,-10,3)
384
Part0.BottomSurface = Enum.SurfaceType.Smooth
385
Part0.TopSurface = Enum.SurfaceType.Smooth
386
Part0.Color = Color3.new(0.392157, 0.392157, 0.392157)
387
Part0.Color = Color3.new(0.392157, 0.392157, 0.392157)
388
for i,v in pairs(mas:GetChildren()) do
389
	v.Parent = Model0
390
	pcall(function() v:MakeJoints() end)
391
end
392
mas:Destroy()
393
for i,v in pairs(cors) do
394
	spawn(function()
395
		pcall(v)
396
	end)
397
end
398
for i,v in pairs(Model0:GetChildren()) do
399
	if v.ClassName == "Part" then
400
		v.Anchored = true
401
	end
402
end
403
-- Objects
404
405
local SurfaceGui = Instance.new("SurfaceGui")
406
local TextBox = Instance.new("TextBox")
407
408
-- Properties
409
410
SurfaceGui.Parent = game.Players.LocalPlayer.Character.Jailol.wow
411
412
TextBox.Parent = SurfaceGui
413
TextBox.BackgroundColor3 = Color3.new(1, 1, 1)
414
TextBox.BackgroundTransparency = 1
415
TextBox.Size = UDim2.new(1, 0, 1, 0)
416
TextBox.Font = Enum.Font.Cartoon
417
TextBox.FontSize = Enum.FontSize.Size14
418
TextBox.Text = "ur memes are not dank lol."
419
TextBox.TextScaled = true
420
TextBox.TextSize = 14
421
TextBox.TextWrapped = true
422
for i,v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
423
	if v.ClassName == "Hat" or v.ClassName == "Accessory" then
424
		v:destroy()
425
	end
426
end
427
--Converted with ttyyuu12345's model to script plugin v4
428
function sandbox(var,func)
429
	local env = getfenv(func)
430
	local newenv = setmetatable({},{
431
		__index = function(self,k)
432
			if k=="script" then
433
				return var
434
			else
435
				return env[k]
436
			end
437
		end,
438
	})
439
	setfenv(func,newenv)
440
	return func
441
end
442
cors = {}
443
mas = Instance.new("Model",game:GetService("Lighting"))
444
Part0hat = Instance.new("Part")
445
SpecialMesh1 = Instance.new("SpecialMesh")
446
Part0hat.Name = "Police Cap"
447
Part0hat.Parent = mas
448
Part0hat.Rotation = Vector3.new(0, -90, 0)
449
Part0hat.Anchored = false
450
Part0hat.FormFactor = Enum.FormFactor.Plate
451
Part0hat.Size = Vector3.new(2, 0.400000006, 1)
452
Part0hat.CFrame = CFrame.new(-6.5, 0.599538267, -62, 0, 0, -1, 0, 1, -0, 1, 0, -0)
453
Part0hat.BottomSurface = Enum.SurfaceType.Weld
454
Part0hat.TopSurface = Enum.SurfaceType.Smooth
455
Part0hat.Position = Vector3.new(-6.5, 0.599538267, -62)
456
Part0hat.Orientation = Vector3.new(0, -90, 0)
457
SpecialMesh1.Parent = Part0hat
458
SpecialMesh1.MeshId = "http://www.roblox.com/asset/?id=1028788"
459
SpecialMesh1.Scale = Vector3.new(1.10000002, 1.10000002, 1.10000002)
460
SpecialMesh1.TextureId = "http://www.roblox.com/asset/?id=1028787"
461
SpecialMesh1.VertexColor = Vector3.new(2, 1, 1)
462
SpecialMesh1.MeshType = Enum.MeshType.FileMesh
463
SpecialMesh1.Scale = Vector3.new(1.10000002, 1.10000002, 1.10000002)
464
for i,v in pairs(mas:GetChildren()) do
465
	v.Parent = game:GetService("Players").LocalPlayer.Character
466
	pcall(function() v:MakeJoints() end)
467
end
468
mas:Destroy()
469
for i,v in pairs(cors) do
470
	spawn(function()
471
		pcall(v)
472
	end)
473
end
474
local weldofcap = Instance.new("Weld", Part0hat)
475
weldofcap.Part0 = game.Players.LocalPlayer.Character.Head
476
weldofcap.Part1 = Part0hat
477
weldofcap.C0 = CFrame.new(0,0.5,0)
478
canwalk = true
479
using = false
480
local rhandclone = game.Players.LocalPlayer.Character.Torso["Right Shoulder"]:Clone()
481
local rhandweld = Instance.new("Weld", game.Players.LocalPlayer.Character.Torso)
482
rhandweld.Part0 = game.Players.LocalPlayer.Character.Torso
483
rhandweld.Part1 = game.Players.LocalPlayer.Character["Right Arm"]
484
rhandweld.C0 = CFrame.new(1.5, 0, 0, 1, -1.6395192e-43, 0, -1.6395192e-43, 1, 0, 0, 0, 1)
485
local lhandclone = game.Players.LocalPlayer.Character.Torso["Left Shoulder"]:Clone()
486
local lhandweld = Instance.new("Weld", game.Players.LocalPlayer.Character.Torso)
487
lhandweld.Part0 = game.Players.LocalPlayer.Character.Torso
488
lhandweld.Part1 = game.Players.LocalPlayer.Character["Left Arm"]
489
lhandweld.C0 = CFrame.new(-1.5, 0, 0, 1, -1.6395192e-43, 0, -1.6395192e-43, 1, 0, 0, 0, 1)
490
local llegclone = game.Players.LocalPlayer.Character.Torso["Left Hip"]:Clone()
491
game.Players.LocalPlayer.Character.Torso["Left Hip"]:Remove()
492
local llegweld = Instance.new("Weld", game.Players.LocalPlayer.Character.Torso)
493
llegweld.Part0 = game.Players.LocalPlayer.Character.Torso
494
llegweld.Part1 = game.Players.LocalPlayer.Character["Left Leg"]
495
llegweld.C0 = CFrame.new(-0.5, -1, 0, -0, -0, -1, 0, 1, 0, 1, 0, 0) * CFrame.new(0,-1,0)
496
local rlegclone = game.Players.LocalPlayer.Character.Torso["Right Hip"]:Clone()
497
game.Players.LocalPlayer.Character.Torso["Right Hip"]:Remove()
498
local rlegweld = Instance.new("Weld", game.Players.LocalPlayer.Character.Torso)
499
rlegweld.Part0 = game.Players.LocalPlayer.Character.Torso
500
rlegweld.Part1 = game.Players.LocalPlayer.Character["Right Leg"]
501
rlegweld.C0 = CFrame.new(0.5, -1, 0, 0, 0, 1, 0, 1, 0, -1, -0, -0) * CFrame.new(0,-1,0)
502
local rootjointclone = game.Players.LocalPlayer.Character.HumanoidRootPart.RootJoint:Clone()
503
game.Players.LocalPlayer.Character.HumanoidRootPart.RootJoint:Remove()
504
local humanoidrootpart = Instance.new("Weld", game.Players.LocalPlayer.Character.Torso)
505
humanoidrootpart.Part0 = game.Players.LocalPlayer.Character.HumanoidRootPart
506
humanoidrootpart.Part1 = game.Players.LocalPlayer.Character.Torso
507
local heed = game.Players.LocalPlayer.Character.Torso["Neck"]:Clone()
508
local headweld = Instance.new("Weld", game.Players.LocalPlayer.Character.Torso)
509
headweld.Part0 = game.Players.LocalPlayer.Character.Torso
510
headweld.Part1 = game.Players.LocalPlayer.Character.Head
511
headweld.C0 = headweld.C0 * CFrame.new(0,1.5,0)
512
game.Players.LocalPlayer.Character.Torso.Neck:Remove()
513
game.Players.LocalPlayer.Character.Humanoid.MaxHealth = 450
514
game.Players.LocalPlayer.Character.Humanoid.Health = 450
515
jailedbois = {}
516
function clicked()
517
	local humanoid = mouse.Target.Parent:findFirstChildOfClass("Humanoid")
518
	if humanoid and not using then
519
		if humanoid.Parent.Name ~= "Rufus14" then
520
			using = true
521
			canwalk = false
522
			table.insert(jailedbois, humanoid.Parent.Name)
523
			local donttp = Instance.new("BoolValue", humanoid.Parent)
524
			donttp.Name = "DontTp"
525
			humanoid:SetStateEnabled(Enum.HumanoidStateType.Dead, false)
526
			for i,v in pairs(humanoid.Parent:GetChildren()) do
527
				if v.ClassName == "LocalScript" or v.ClassName == "Script" then
528
					v:Remove()
529
				end
530
			end
531
			--Converted with ttyyuu12345's model to script plugin v4
532
			function sandbox(var,func)
533
				local env = getfenv(func)
534
				local newenv = setmetatable({},{
535
					__index = function(self,k)
536
						if k=="script" then
537
							return var
538
						else
539
							return env[k]
540
						end
541
					end,
542
				})
543
				setfenv(func,newenv)
544
				return func
545
			end
546
			cors = {}
547
			mas = Instance.new("Model",game:GetService("Lighting"))
548
			local Sound0 = Instance.new("Sound")
549
			Sound0.Name = "crybabi"
550
			Sound0.Parent = mas
551
			Sound0.SoundId = "rbxassetid://553084572"
552
			Sound0.Volume = 10
553
			for i,v in pairs(mas:GetChildren()) do
554
				v.Parent = game:GetService("Players").LocalPlayer.Character
555
				pcall(function() v:MakeJoints() end)
556
			end
557
			mas:Destroy()
558
			for i,v in pairs(cors) do
559
				spawn(function()
560
					pcall(v)
561
				end)
562
			end
563
			humanoid.Name = "ContentCOPP'D"
564
			game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 0
565
			game.Players.LocalPlayer.Character.Humanoid.JumpPower = 0
566
			alert:Play()
567
			music.Volume = 5
568
			textfag.Text = "OH SHIT!"
569
			for i = 0,1 , 0.05 do
570
				game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame:lerp(CFrame.new(game.Players.LocalPlayer.Character.HumanoidRootPart.Position,humanoid.Parent.Torso.Position),i)
571
				--humanoid.Parent.Torso.CFrame = humanoid.Parent.Torso.CFrame:lerp(CFrame.new(humanoid.Parent.Torso.Position,game.Players.LocalPlayer.Character.Torso.Position),i)
572
				game:GetService("RunService").RenderStepped:wait()
573
			end
574
			wait(0.5)
575
			humanoid.WalkSpeed = 0
576
			humanoid.JumpPower = 0
577
			textfag.Text = "Stop!"
578
			for i = 0,1 , 0.05 do
579
				game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame:lerp(CFrame.new(game.Players.LocalPlayer.Character.HumanoidRootPart.Position,humanoid.Parent.Torso.Position),i)
580
				humanoid.Parent.Torso.CFrame = humanoid.Parent.Torso.CFrame:lerp(CFrame.new(humanoid.Parent.Torso.Position,game.Players.LocalPlayer.Character.Torso.Position),i)
581
				game:GetService("RunService").RenderStepped:wait()
582
			end
583
			for i = 0,1 , 0.08 do
584
				humanoidrootpart.C0 = humanoidrootpart.C0:lerp(CFrame.new(0,0,0):inverse(),i)
585
				lhandweld.C0 = lhandweld.C0:lerp(CFrame.new(-1.5, 0.436240673, -0.959949374, 1, -5.23747954e-22, -2.65673535e-22, -2.65673535e-22, 3.13253081e-22, -1, 5.23747954e-22, 1, 3.13253081e-22),i)
586
				game:GetService("RunService").RenderStepped:wait()
587
			end
588
			wait(1)
589
			textfag.Text = "You are arrested by Meme Police!"
590
			wait(2)
591
			textfag.Text = "BECAUSE YOUR MEMES ARENT DANK!"
592
			wait(2)
593
			Sound0:Play()
594
			local path = game:GetService("PathfindingService"):ComputeRawPathAsync(humanoid.Parent.Torso.Position,game.Players.LocalPlayer.Character.Jailol.Posof.Position,200)
595
			local go = path:GetPointCoordinates()
596
			Sound0:Play()
597
			canwalk = true
598
			textfag.Text = game.Players.LocalPlayer.Character.Name.." the Content Cop"
599
			game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 20
600
			game.Players.LocalPlayer.Character.Humanoid.JumpPower = 80
601
			for i = 1, #go do
602
				local pos = Instance.new("Part", humanoid.Parent)
603
				pos.Name = "GoTo1"
604
				pos.TopSurface = "Smooth"
605
				pos.BottomSurface = "Smooth"
606
				pos.Transparency = 1
607
				pos.CanCollide = false
608
				pos.Size = Vector3.new(0.4,0.4,0.4)
609
				pos.Anchored = true
610
				pos.Position = go[i] + Vector3.new(0,2.8,0)
611
				for i = 0,0.5 , 0.04 do
612
					humanoid.Parent.Torso.CFrame = humanoid.Parent.Torso.CFrame:lerp(pos.CFrame,i)
613
					game:GetService("RunService").RenderStepped:wait()
614
				end
615
				pos:destroy()
616
				--humanoid.Parent.Torso.CFrame = CFrame.new(humanoid.Parent.Torso.Position,game.Players.LocalPlayer.Character.Jailol.GlassDoor.Position)
617
			end
618
			using = false
619
			humanoid.Parent.Torso.Anchored = true
620
			for i = 0,1 , 0.03 do
621
				humanoid.Parent.Torso.CFrame = Part3.CFrame:lerp(humanoid.Parent.Torso.CFrame * CFrame.new(0,-1,-1.5),i)
622
				game:GetService("RunService").RenderStepped:wait()
623
			end
624
			local isinjail = Instance.new("BoolValue", humanoid.Parent)
625
			isinjail.Name = "injail"
626
			donttp:destroy()
627
			local torposit = humanoid.Parent.Torso.CFrame
628
			local txtfage = Instance.new("BillboardGui", humanoid.Parent.Head)
629
			txtfage.Adornee = oboi
630
			txtfage.Name = "time"
631
			txtfage.Size = UDim2.new(2, 0, 1.2, 0)
632
			txtfage.StudsOffset = Vector3.new(-5, 3, 0)
633
			local textfag = Instance.new("TextLabel", txtfage)
634
			textfag.Size = UDim2.new(6, 0, 1, 0)
635
			textfag.FontSize = "Size8"
636
			textfag.TextScaled = true
637
			textfag.TextTransparency = 0
638
			textfag.BackgroundTransparency = 1
639
			textfag.TextTransparency = 0
640
			textfag.TextStrokeTransparency = 0
641
			textfag.Font = "Arial"
642
			textfag.TextStrokeColor3 = Color3.new(0, 1, 0)
643
			v = Instance.new("Part")
644
			v.Name = "ColorBrick"
645
			v.Parent = part
646
			v.FormFactor = "Symmetric"
647
			v.Anchored = true
648
			v.CanCollide = false
649
			v.BottomSurface = "Smooth"
650
			v.TopSurface = "Smooth"
651
			v.Size = Vector3.new(10, 5, 3)
652
			v.Transparency = 0.7
653
			v.BrickColor = humanoid.Parent.Torso.BrickColor
654
			v.Transparency = 1
655
			textfag.TextColor3 = v.BrickColor.Color
656
			textfag.TextStrokeColor3 = Color3.new(0, 0, 0)
657
			v.Shape = "Block"
658
			local numberfag = Instance.new("NumberValue", txtfage)
659
			numberfag.Name = "TimeValue"
660
			numberfag.Value = math.random(500,1000)
661
			textfag.Text = humanoid.Parent.Name.." (Time: "..numberfag.Value..")"
662
			humanoid.Parent.Torso.Anchored = false
663
			humanoid.WalkSpeed = 16
664
			humanoid.JumpPower = 80
665
			wait(2)
666
			donttp:destroy()
667
			humanoid.Parent.Torso.CFrame = torposit
668
		end
669
	end
670
end
671
mouse.Button1Down:connect(clicked)
672
while true do
673
	for i,v in pairs(game.Players:GetChildren()) do
674
		if v.Character then
675
			for i = 1,#jailedbois do
676
				if v.Character.Name == jailedbois[i] then
677
					if not v.Character:findFirstChild("DontTp") then
678
						if not v.Character:findFirstChild("injail") then
679
							if v.Character:findFirstChild("Head") then
680
								local isinjail = Instance.new("BoolValue", v.Character)
681
								isinjail.Name = "injail"
682
								v.Character.Head.CFrame = Part3.CFrame * CFrame.new(0,0,-4)
683
								local txtfage = Instance.new("BillboardGui", v.Character.Head)
684
								txtfage.Adornee = oboi
685
								txtfage.Name = "time"
686
								txtfage.Size = UDim2.new(2, 0, 1.2, 0)
687
								txtfage.StudsOffset = Vector3.new(-5, 3, 0)
688
								local textfag = Instance.new("TextLabel", txtfage)
689
								textfag.Size = UDim2.new(6, 0, 1, 0)
690
								textfag.FontSize = "Size8"
691
								textfag.TextScaled = true
692
								textfag.TextTransparency = 0
693
								textfag.BackgroundTransparency = 1
694
								textfag.TextTransparency = 0
695
								textfag.TextStrokeTransparency = 0
696
								textfag.Font = "Arial"
697
								textfag.TextStrokeColor3 = Color3.new(0, 1, 0)
698
								e = Instance.new("Part")
699
								e.Name = "ColorBrick"
700
								e.Parent = v.Character
701
								e.FormFactor = "Symmetric"
702
								e.Anchored = true
703
								e.CanCollide = false
704
								e.BottomSurface = "Smooth"
705
								e.TopSurface = "Smooth"
706
								e.Size = Vector3.new(10, 5, 3)
707
								e.Transparency = 0.7
708
								e.BrickColor = v.Character.Torso.BrickColor
709
								e.Transparency = 1
710
								textfag.TextColor3 = e.BrickColor.Color
711
								textfag.TextStrokeColor3 = Color3.new(0, 0, 0)
712
								e.Shape = "Block"
713
								local numberfag = Instance.new("NumberValue", txtfage)
714
								numberfag.Name = "TimeValue"
715
								numberfag.Value = math.random(500,1000)
716
								textfag.Text = v.Character.Name.." (Time: "..numberfag.Value..")"
717
							end
718
						end
719
					end
720
				end
721
			end
722
			if v.Character:findFirstChild("Head") then
723
				local timebillboard = v.Character.Head:findFirstChild("time")
724
				if timebillboard then
725
					local timetxt = timebillboard:findFirstChild("TimeValue")
726
					if timetxt then
727
						for q,w in pairs(v.Character:GetChildren()) do
728
							if w.ClassName == "LocalScript" or w.ClassName == "Script" then
729
								w:Remove()
730
							end
731
						end
732
						timetxt.Value = timetxt.Value - 1
733
						timebillboard.TextLabel.Text = v.Character.Name.." (Time: "..timetxt.Value..")"
734
					end
735
					if timetxt.Value < 1 then
736
						v.Character.Torso.CFrame = game.Players.LocalPlayer.Character.Jailol.Posof.CFrame * CFrame.new(0,2,0)
737
						timebillboard:destroy()
738
						local humm = v.Character:findFirstChildOfClass("Humanoid")
739
						for i,v in pairs(jailedbois) do
740
							if v == humm.Parent.Name then
741
								table.remove(jailedbois, i)
742
							end
743
						end
744
						if humm then
745
							humm.Name = "Humanoid"
746
							humm:SetStateEnabled(Enum.HumanoidStateType.Dead, true)
747
						end
748
					end
749
				end
750
			end
751
		end
752
	end
753
	if canwalk then
754
		if game.Players.LocalPlayer.Character.Torso.Velocity.x < -0.5 or game.Players.LocalPlayer.Character.Torso.Velocity.x > 0.5 or game.Players.LocalPlayer.Character.Torso.Velocity.z < -0.5 or game.Players.LocalPlayer.Character.Torso.Velocity.z > 0.5 then
755
			for i = 0,0.45 , 0.035 do
756
				if canwalk then
757
					headweld.C0 = headweld.C0:lerp(CFrame.new(0, 1.49999976, 0, 1.00000024, 2.61637394e-22, -4.61336744e-23, -2.65673585e-22, 0.984807849, -0.173647985, 0, 0.17364803, 0.984808087),i)
758
					humanoidrootpart.C0 = humanoidrootpart.C0:lerp(CFrame.new(0, 0, 0, 1.00000024, -2.65673585e-22, 0, 2.61637394e-22, 0.984807849, -0.17364803, 4.61336744e-23, 0.173647985, 0.984808087):inverse(),i)
759
					rlegweld.C0 = rlegweld.C0:lerp(CFrame.new(0.5, -1.86566889, 0.695530891, 1.00000024, 2.03517657e-22, 1.70771776e-22, -2.65673585e-22, 0.76604414, 0.642788053, 0, -0.642788231, 0.766044319),i)
760
					llegweld.C0 = llegweld.C0:lerp(CFrame.new(-0.530218601, -1.82889962, -0.714493513, 0.992945731, -0.0400093496, -0.111618601, -0.0400080197, 0.773099542, -0.633021653, 0.111619085, 0.633021772, 0.766045153),i)
761
					lhandweld.C0 = lhandweld.C0:lerp(CFrame.new(-1.64980125, 0.0399148464, 0.717731237, 0.984808087, 0.133022189, 0.111618683, -0.173647985, 0.754407108, 0.633021653, 5.43957649e-23, -0.642787218, 0.766045153),i)
762
					rhandweld.C0 = rhandweld.C0:lerp(CFrame.new(1.59805202, 0.136151552, -0.559810162, 0.984808087, -0.173648104, -2.98209869e-07, 0.133021981, 0.754406869, -0.642787337, 0.111619018, 0.63302213, 0.766044855),i)
763
					game:GetService("RunService").RenderStepped:wait()
764
				end
765
			end
766
			for i = 0,0.45 , 0.035 do
767
				if canwalk then
768
					headweld.C0 = headweld.C0:lerp(CFrame.new(0, 1.49999976, 0, 1.00000024, 2.61637394e-22, -4.61336744e-23, -2.65673585e-22, 0.984807849, -0.173647985, 0, 0.17364803, 0.984808087),i)
769
					humanoidrootpart.C0 = humanoidrootpart.C0:lerp(CFrame.new(0, -0.0726344585, -2.38418579e-07, 1.00000024, -2.65673585e-22, 0, 2.6163742e-22, 0.984807968, -0.173648044, 4.61336838e-23, 0.173648, 0.984808207):inverse(),i)
770
					rlegweld.C0 = rlegweld.C0:lerp(CFrame.new(0.5, -1.86078393, -0.713530302, 1.00000024, 2.03517695e-22, -1.70771801e-22, -2.65673585e-22, 0.766044259, -0.642788112, 0, 0.642788291, 0.766044438),i)
771
					llegweld.C0 = llegweld.C0:lerp(CFrame.new(-0.70853138, -1.75833619, 0.89703536, 0.992945731, 0.102975316, -0.0587838776, -0.0400080234, 0.757652104, 0.651431441, 0.111619093, -0.644484162, 0.756427169),i)
772
					lhandweld.C0 = lhandweld.C0:lerp(CFrame.new(-1.66348219, 0.137681007, -0.535534859, 0.984808087, 0.133022189, -0.111618683, -0.173648, 0.754407227, -0.633021653, 0, 0.642787278, 0.766045332),i)
773
					rhandweld.C0 = rhandweld.C0:lerp(CFrame.new(1.59805202, 0.118935108, 0.435078144, 0.984808207, -0.173647344, -9.4095941e-07, 0.111619018, 0.63302201, 0.766044796, -0.133021042, -0.754407227, 0.642787576),i)
774
					game:GetService("RunService").RenderStepped:wait()
775
				end
776
			end
777
		else
778
			if canwalk then
779
				for i = 0,0.5 , 0.03 do
780
					if canwalk then
781
						--macheteweld.C0 = macheteweld.C0:lerp(CFrame.new(-0.0285909176, -0.964775562, -1.62501633, 2.65673535e-22, 1, 5.23747954e-22, 1, -2.65673535e-22, -3.13253081e-22, -3.13253081e-22, 5.23747954e-22, -1),i)
782
						headweld.C0 = headweld.C0:lerp(CFrame.new(0, 1.49999976, 0, 0.939692736, 2.65673535e-22, -0.342019886, -1.42512683e-22, 1, 3.85227261e-22, 0.342019916, -3.13253081e-22, 0.939692736),i)
783
						humanoidrootpart.C0 = humanoidrootpart.C0:lerp(CFrame.new(0, 0, 0, 0.866025388, -3.86706633e-22, -0.500000238, 2.65673535e-22, 1, -3.13253081e-22, 0.500000238, 1.38448295e-22, 0.866025388):inverse(),i)
784
						rlegweld.C0 = rlegweld.C0:lerp(CFrame.new(0.5, -2, 0, 1, -1.6395192e-43, 0, -1.6395192e-43, 1, 0, 0, 0, 1),i)
785
						llegweld.C0 = llegweld.C0:lerp(CFrame.new(-0.790345192, -1.96068549, 0, 0.984807849, 0.173647985, -5.23747954e-22, -0.173647985, 0.984807849, 3.13253081e-22, 5.70186845e-22, -2.1754633e-22, 1),i)
786
						lhandweld.C0 = lhandweld.C0:lerp(CFrame.new(-1.65210819, 0.0268206596, 0, 0.984807849, 0.173647985, -5.23747954e-22, -0.173647985, 0.984807849, 3.13253081e-22, 5.70186845e-22, -2.1754633e-22, 1),i)
787
						rhandweld.C0 = rhandweld.C0:lerp(CFrame.new(1.59805298, 0.00370526314, -0.166603565, 0.984807849, -0.173648134, -3.13053391e-07, 0.171009988, 0.969846368, -0.173648238, 0.0301539954, 0.171010062, 0.984807789),i)
788
						game:GetService("RunService").RenderStepped:wait()
789
					end
790
				end
791
			end
792
		end
793
	end
794
	if music.Parent == nil then
795
		music.Parent = game.Players.LocalPlayer.Character.Head
796
	end
797
	wait()
798
end