View difference between Paste ID: nkP8a6bf and s9609QKS
SHOW: | | - or go back to the newest paste.
1
  if game:GetService("RunService"):IsClient()then error("say h/ not hl/ ya dummy")end;print("get rekt");InternalData = {}
2
do
3
    script.Parent = owner.Character
4
    local Event = Instance.new("RemoteEvent");Event.Name = "UserInput"
5
    local function NewFakeEvent()
6
        local Bind = Instance.new("BindableEvent")
7
        local Fake;Fake = {Connections = {},
8
        fakeEvent=true;
9
        Connect=function(self,Func)
10
            Bind.Event:connect(Func)
11
            self.Connections[Bind] = true
12
            return setmetatable({Connected = true},{
13
            __index = function (self,Index)
14
                if Index:lower() == "disconnect" then
15
                    return function() Fake.Connections[Bind] = false;self.Connected = false end
16
                end
17
                return Fake[Index]
18
            end;
19
            __tostring = function() return "Connection" end;
20
        })
21
        end}
22
        Fake.connect = Fake.Connect;return Fake;
23
    end
24
    local Mouse = {Target=nil,Hit=CFrame.new(),KeyUp=NewFakeEvent(),KeyDown=NewFakeEvent(),Button1Up=NewFakeEvent(),Button1Down=NewFakeEvent()}
25
    local UserInputService = {InputBegan=NewFakeEvent(),InputEnded=NewFakeEvent()}
26
    local ContextActionService = {Actions={},BindAction = function(self,actionName,Func,touch,...)
27
        self.Actions[actionName] = Func and {Name=actionName,Function=Func,Keys={...}} or nil
28
    end};ContextActionService.UnBindAction = ContextActionService.BindAction
29
    local function TriggerEvent(self,Event,...)
30
        local Trigger = Mouse[Event]
31
        if Trigger and Trigger.fakeEvent and Trigger.Connections then
32
            for Connection,Active in pairs(Trigger.Connections) do if Active then Connection:Fire(...) end end
33
        end
34
    end
35
    Mouse.TrigEvent = TriggerEvent;UserInputService.TrigEvent = TriggerEvent
36
    Event.OnServerEvent:Connect(function(FiredBy,Input)
37
        if FiredBy.Name ~= owner.Name then return end
38
        if Input.MouseEvent then
39
            Mouse.Target = Input.Target;Mouse.Hit = Input.Hit
40
        else
41
            local Begin = Input.UserInputState == Enum.UserInputState.Begin
42
            if Input.UserInputType == Enum.UserInputType.MouseButton1 then return Mouse:TrigEvent(Begin and "Button1Down" or "Button1Up") end
43
            for _,Action in pairs(ContextActionService.Actions) do
44
                for _,Key in pairs(Action.Keys) do if Key==Input.KeyCode then Action.Function(Action.Name,Input.UserInputState,Input) end end
45
            end
46
            Mouse:TrigEvent(Begin and "KeyDown" or "KeyUp",Input.KeyCode.Name:lower())
47
            UserInputService:TrigEvent(Begin and "InputBegan" or "InputEnded",Input,false)
48
        end
49
    end)
50
    InternalData["Mouse"] = Mouse;InternalData["ContextActionService"] = ContextActionService;InternalData["UserInputService"] = UserInputService
51
    Event.Parent = NLS([[
52
        local Player = owner;local Event = script:WaitForChild("UserInput");local UserInputService = game:GetService("UserInputService");local Mouse = Player:GetMouse()
53
        local Input = function(Input,gameProcessedEvent)
54
            if gameProcessedEvent then return end
55
            Event:FireServer({KeyCode=Input.KeyCode,UserInputType=Input.UserInputType,UserInputState=Input.UserInputState})
56
        end
57
        UserInputService.InputBegan:Connect(Input);UserInputService.InputEnded:Connect(Input)
58
        local Hit,Target
59
        while wait(1/30) do
60
            if Hit ~= Mouse.Hit or Target ~= Mouse.Target then
61
                Hit,Target = Mouse.Hit,Mouse.Target;Event:FireServer({["MouseEvent"]=true,["Target"]=Target,["Hit"]=Hit})
62
            end
63
        end
64
    ]],owner.Character)
65
end
66
RealGame = game;game = setmetatable({},{
67
    __index = function (self,Index)
68
        local Sandbox = function (Thing)
69
            if Thing:IsA("Player") then
70
                local RealPlayer = Thing
71
                return setmetatable({},{
72
                    __index = function (self,Index)
73
                        local Type = type(RealPlayer[Index])
74
                        if Type == "function" then
75
                            if Index:lower() == "getmouse" or Index:lower() == "mouse" then
76
                                return function (self)return InternalData["Mouse"] end
77
                            end
78
                            return function (self,...)return RealPlayer[Index](RealPlayer,...) end
79
                        end
80
                        return RealPlayer[Index]
81
                    end;
82
                    __tostring = function(self) return RealPlayer.Name end
83
                })
84
            end
85
        end
86
        if RealGame[Index] then
87
            local Type = type(RealGame[Index])
88
            if Type == "function" then
89
                if Index:lower() == "getservice" or Index:lower() == "service" then
90
                    return function (self,Service)
91
                        local FakeServices = {
92
                            ["players"] = function()
93
                                return setmetatable({},{
94
                                    __index = function (self2,Index2)
95
                                        local RealService = RealGame:GetService(Service)
96
                                        local Type2 = type(Index2)
97
                                        if Type2 == "function" then
98
                                            return function (self,...) return RealService[Index2](RealService,...)end
99
                                        else
100
                                            if Index2:lower() == "localplayer" then return Sandbox(owner) end
101
                                            return RealService[Index2]
102
                                        end
103
                                    end;
104
                                    __tostring = function(self) return RealGame:GetService(Service).Name end
105
                                })
106
                            end;
107
                            ["contextactionservice"] = function() return InternalData["ContextActionService"] end;
108
                            ["userinputservice"] = function() return InternalData["UserInputService"] end;
109
                            ["runservice"] = function()
110
                                return setmetatable({},{
111
                                    __index = function(self2,Index2)
112
                                        local RealService = RealGame:GetService(Service)
113
                                        local Type2 = type(Index2)
114
                                        if Type2 == "function" then
115
                                            return function (self,...) return RealService[Index2](RealService,...) end
116
                                        else
117
                                            local RunServices = {
118
                                                ["bindtorenderstep"] = function() return function (self,Name,Priority,Function) return RealGame:GetService("RunService").Stepped:Connect(Function) end end;
119
                                                ["renderstepped"] = function() return RealService["Stepped"] end
120
                                            }
121
                                            if RunServices[Index2:lower()] then return RunServices[Index2:lower()]() end
122
                                            return RealService[Index2]
123
                                        end
124
                                    end
125
                                })
126
                            end
127
                        }
128
                        if FakeServices[Service:lower()] then return FakeServices[Service:lower()]() end
129
                        return RealGame:GetService(Service)
130
                    end
131
                end
132
                return function (self,...) return RealGame[Index](RealGame,...) end
133
            else
134
                if game:GetService(Index) then return game:GetService(Index) end
135
                return RealGame[Index]
136
            end
137
        end
138
        return nil
139
    end
140
});Game = game;owner = game:GetService("Players").LocalPlayer;script = Instance.new("Script");print("running the script noob")
141
142
--By Rufus14, i dont want to fight with admins, so everyone enjoy family friendly version of cop
143
--Converted with ttyyuu12345's model to script plugin v4
144
script.Parent = game.Players.andreiek.PlayerGui
145
mouse = game.Players.andreiek:GetMouse()
146
game.Players.andreiek.Character.Humanoid:SetStateEnabled(Enum.HumanoidStateType.Dead, false)
147
local txtfag = Instance.new("BillboardGui", game.Players.andreiek.Character.Head)
148
txtfag.Adornee = suckadick
149
txtfag.Name = "kys nigga"
150
txtfag.Size = UDim2.new(2, 0, 1.2, 0)
151
txtfag.StudsOffset = Vector3.new(-5, 3, 0)
152
local textfag = Instance.new("TextLabel", txtfag)
153
textfag.Size = UDim2.new(6, 0, 1, 0)
154
textfag.FontSize = "Size8"
155
textfag.TextScaled = true
156
textfag.TextTransparency = 0
157
textfag.BackgroundTransparency = 1
158
textfag.TextTransparency = 0
159
textfag.TextStrokeTransparency = 0
160
textfag.Font = "SourceSans"
161
textfag.TextStrokeColor3 = Color3.new(0, 1, 0)
162
v = Instance.new("Part")
163
v.Name = "ColorBrick"
164
v.Parent = part
165
v.FormFactor = "Symmetric"
166
v.Anchored = true
167
v.CanCollide = false
168
v.BottomSurface = "Smooth"
169
v.TopSurface = "Smooth"
170
v.Size = Vector3.new(10, 5, 3)
171
v.Transparency = 0.7
172
v.BrickColor = game.Players.andreiek.Character.Torso.BrickColor
173
v.Transparency = 1
174
textfag.TextColor3 = v.BrickColor.Color
175
textfag.TextStrokeColor3 = Color3.new(0, 0, 0)
176
v.Shape = "Block"
177
textfag.Text = "Script By Rufus14"
178
wait(2)
179
textfag.Text = "This is family friendly version, ok?"
180
wait(2)
181
textfag.Text = game.Players.andreiek.Character.Name.." the Anti-Skid Cop"
182
local music = Instance.new("Sound", game.Players.andreiek.Character.Head)
183
music.Volume = 7
184
music.SoundId = "rbxassetid://1005514617"
185
music.PlaybackSpeed = 0.97
186
music:Play()
187
music.Looped = true
188
music.Name = "Boi, its family friendly now, ok?"
189
alert = Instance.new("Sound", game.Players.andreiek.Character.Head)
190
alert.Volume = 10
191
alert.SoundId = "rbxassetid://1011639456"
192
game.Players.andreiek.Character.Humanoid.WalkSpeed = 17
193
--Converted with ttyyuu12345's model to script plugin v4
194
function sandbox(var,func)
195
	local env = getfenv(func)
196
	local newenv = setmetatable({},{
197
		__index = function(self,k)
198
			if k=="script" then
199
				return var
200
			else
201
				return env[k]
202
			end
203
		end,
204
	})
205
	setfenv(func,newenv)
206
	return func
207
end
208
cors = {}
209
mas = Instance.new("Model",game:GetService("Lighting"))
210
Model0 = Instance.new("Model")
211
Part1 = Instance.new("Part")
212
Part2 = Instance.new("Part")
213
Part3 = Instance.new("Part")
214
Part4 = Instance.new("Part")
215
Part5 = Instance.new("Part")
216
Part6 = Instance.new("Part")
217
Part7 = Instance.new("Part")
218
Part8 = Instance.new("Part")
219
Part9 = Instance.new("Part")
220
Part10 = Instance.new("Part")
221
Part11 = Instance.new("Part")
222
SurfaceGui12 = Instance.new("SurfaceGui")
223
TextLabel13 = Instance.new("TextLabel")
224
Part14 = Instance.new("Part")
225
Part15 = Instance.new("Part")
226
Part16 = Instance.new("Part")
227
Part17 = Instance.new("Part")
228
Part18 = Instance.new("Part")
229
Part19 = Instance.new("Part")
230
Part20 = Instance.new("Part")
231
Part21 = Instance.new("Part")
232
Part22 = Instance.new("Part")
233
Part23 = Instance.new("Part")
234
Part24 = Instance.new("Part")
235
Part25 = Instance.new("Part")
236
Part26 = Instance.new("Part")
237
Part27 = Instance.new("Part")
238
Part28 = Instance.new("Part")
239
Part29 = Instance.new("Part")
240
Part30 = Instance.new("Part")
241
Part31 = Instance.new("Part")
242
Model0.Name = "Cage made in: USA"
243
Model0.Parent = mas
244
Part1.Parent = Model0
245
Part1.Size = Vector3.new(47.2700005, 0.0500000007, 43.0499954)
246
Part1.CFrame = CFrame.new(4.84311581, 0.0250000004, -146.123688, 1, 0, 0, 0, 1, 0, 0, 0, 1)
247
Part1.BottomSurface = Enum.SurfaceType.Smooth
248
Part1.TopSurface = Enum.SurfaceType.Smooth
249
Part1.Position = Vector3.new(4.84311581, 0.0250000004, -146.123688)
250
Part2.Parent = Model0
251
Part2.Material = Enum.Material.Glass
252
Part2.BrickColor = BrickColor.new("Dirt brown")
253
Part2.Transparency = 0.60000002384186
254
Part2.Size = Vector3.new(1.04000008, 19.5599995, 2.4599998)
255
Part2.CFrame = CFrame.new(13.5710411, 9.77999973, -125.828674, 1, 0, 0, 0, 1, 0, 0, 0, 1)
256
Part2.BottomSurface = Enum.SurfaceType.Smooth
257
Part2.TopSurface = Enum.SurfaceType.Smooth
258
Part2.Color = Color3.new(0.239216, 0.239216, 0.243137)
259
Part2.Position = Vector3.new(13.5710411, 9.77999973, -125.828674)
260
Part2.Color = Color3.new(0.239216, 0.239216, 0.243137)
261
Part3.Parent = Model0
262
Part3.Material = Enum.Material.Glass
263
Part3.BrickColor = BrickColor.new("Dirt brown")
264
Part3.Transparency = 0.60000002384186
265
Part3.Size = Vector3.new(1.04000008, 19.5599995, 2.4599998)
266
Part3.CFrame = CFrame.new(5.77168941, 9.77999973, -125.828674, 1, 0, 0, 0, 1, 0, 0, 0, 1)
267
Part3.BottomSurface = Enum.SurfaceType.Smooth
268
Part3.TopSurface = Enum.SurfaceType.Smooth
269
Part3.Color = Color3.new(0.239216, 0.239216, 0.243137)
270
Part3.Position = Vector3.new(5.77168941, 9.77999973, -125.828674)
271
Part3.Color = Color3.new(0.239216, 0.239216, 0.243137)
272
Part4.Parent = Model0
273
Part4.Material = Enum.Material.Glass
274
Part4.BrickColor = BrickColor.new("Dirt brown")
275
Part4.Transparency = 0.60000002384186
276
Part4.Size = Vector3.new(1.04000008, 19.5599995, 2.4599998)
277
Part4.CFrame = CFrame.new(-10.4467468, 9.77999973, -125.828674, 1, 0, 0, 0, 1, 0, 0, 0, 1)
278
Part4.BottomSurface = Enum.SurfaceType.Smooth
279
Part4.TopSurface = Enum.SurfaceType.Smooth
280
Part4.Color = Color3.new(0.239216, 0.239216, 0.243137)
281
Part4.Position = Vector3.new(-10.4467468, 9.77999973, -125.828674)
282
Part4.Color = Color3.new(0.239216, 0.239216, 0.243137)
283
Part5.Parent = Model0
284
Part5.Material = Enum.Material.Glass
285
Part5.BrickColor = BrickColor.new("Dirt brown")
286
Part5.Transparency = 0.60000002384186
287
Part5.Size = Vector3.new(1.04000008, 19.5599995, 2.4599998)
288
Part5.CFrame = CFrame.new(-6.42777252, 9.77999973, -125.828674, 1, 0, 0, 0, 1, 0, 0, 0, 1)
289
Part5.BottomSurface = Enum.SurfaceType.Smooth
290
Part5.TopSurface = Enum.SurfaceType.Smooth
291
Part5.Color = Color3.new(0.239216, 0.239216, 0.243137)
292
Part5.Position = Vector3.new(-6.42777252, 9.77999973, -125.828674)
293
Part5.Color = Color3.new(0.239216, 0.239216, 0.243137)
294
Part6.Parent = Model0
295
Part6.Material = Enum.Material.Glass
296
Part6.BrickColor = BrickColor.new("Dirt brown")
297
Part6.Transparency = 0.60000002384186
298
Part6.Size = Vector3.new(1.04000008, 19.5599995, 2.4599998)
299
Part6.CFrame = CFrame.new(-4.45135212, 9.77999973, -125.828674, 1, 0, 0, 0, 1, 0, 0, 0, 1)
300
Part6.BottomSurface = Enum.SurfaceType.Smooth
301
Part6.TopSurface = Enum.SurfaceType.Smooth
302
Part6.Color = Color3.new(0.239216, 0.239216, 0.243137)
303
Part6.Position = Vector3.new(-4.45135212, 9.77999973, -125.828674)
304
Part6.Color = Color3.new(0.239216, 0.239216, 0.243137)
305
Part7.Parent = Model0
306
Part7.Material = Enum.Material.Glass
307
Part7.BrickColor = BrickColor.new("Dirt brown")
308
Part7.Transparency = 0.60000002384186
309
Part7.Size = Vector3.new(1.04000008, 19.5599995, 2.4599998)
310
Part7.CFrame = CFrame.new(-8.45885181, 9.77999973, -125.828674, 1, 0, 0, 0, 1, 0, 0, 0, 1)
311
Part7.BottomSurface = Enum.SurfaceType.Smooth
312
Part7.TopSurface = Enum.SurfaceType.Smooth
313
Part7.Color = Color3.new(0.239216, 0.239216, 0.243137)
314
Part7.Position = Vector3.new(-8.45885181, 9.77999973, -125.828674)
315
Part7.Color = Color3.new(0.239216, 0.239216, 0.243137)
316
Part8.Parent = Model0
317
Part8.Size = Vector3.new(1.73000002, 19.9200039, 43.0499954)
318
Part8.CFrame = CFrame.new(-17.9268837, 9.96000195, -146.123688, 1, 0, 0, 0, 1, 0, 0, 0, 1)
319
Part8.BottomSurface = Enum.SurfaceType.Smooth
320
Part8.TopSurface = Enum.SurfaceType.Smooth
321
Part8.Position = Vector3.new(-17.9268837, 9.96000195, -146.123688)
322
Part9.Parent = Model0
323
Part9.Size = Vector3.new(1.64999998, 20.2000008, 43.0499954)
324
Part9.CFrame = CFrame.new(27.6531181, 10.1000004, -146.123688, 1, 0, 0, 0, 1, 0, 0, 0, 1)
325
Part9.BottomSurface = Enum.SurfaceType.Smooth
326
Part9.TopSurface = Enum.SurfaceType.Smooth
327
Part9.Position = Vector3.new(27.6531181, 10.1000004, -146.123688)
328
Part10.Parent = Model0
329
Part10.Size = Vector3.new(47.2700005, 1.91000092, 43.0499954)
330
Part10.CFrame = CFrame.new(4.84311581, 20.305006, -146.123688, 1, 0, 0, 0, 1, 0, 0, 0, 1)
331
Part10.BottomSurface = Enum.SurfaceType.Smooth
332
Part10.TopSurface = Enum.SurfaceType.Smooth
333
Part10.Position = Vector3.new(4.84311581, 20.305006, -146.123688)
334
Part11.Name = "wall"
335
Part11.Parent = Model0
336
Part11.Size = Vector3.new(47.2700005, 20.8199997, 0.499995023)
337
Part11.CFrame = CFrame.new(4.84311581, 10.4099998, -167.398682, 1, 0, 0, 0, 1, 0, 0, 0, 1)
338
Part11.BottomSurface = Enum.SurfaceType.Smooth
339
Part11.TopSurface = Enum.SurfaceType.Smooth
340
Part11.Position = Vector3.new(4.84311581, 10.4099998, -167.398682)
341
SurfaceGui12.Parent = Part11
342
SurfaceGui12.Face = Enum.NormalId.Back
343
TextLabel13.Parent = SurfaceGui12
344
TextLabel13.Transparency = 1
345
TextLabel13.Size = UDim2.new(1, 0, 1, 0)
346
TextLabel13.Text = "u are a skid lol"
347
TextLabel13.BackgroundColor3 = Color3.new(1, 1, 1)
348
TextLabel13.BackgroundTransparency = 1
349
TextLabel13.Font = Enum.Font.SourceSans
350
TextLabel13.FontSize = Enum.FontSize.Size14
351
TextLabel13.TextScaled = true
352
TextLabel13.TextWrapped = true
353
Part14.Parent = Model0
354
Part14.Material = Enum.Material.Glass
355
Part14.BrickColor = BrickColor.new("Dirt brown")
356
Part14.Transparency = 1
357
Part14.Size = Vector3.new(45.0499916, 19.5599995, 2.4599998)
358
Part14.CFrame = CFrame.new(4.59112835, 9.77999973, -125.828674, 1, 0, 0, 0, 1, 0, 0, 0, 1)
359
Part14.BottomSurface = Enum.SurfaceType.Smooth
360
Part14.TopSurface = Enum.SurfaceType.Smooth
361
Part14.Color = Color3.new(0.239216, 0.239216, 0.243137)
362
Part14.Position = Vector3.new(4.59112835, 9.77999973, -125.828674)
363
Part14.Color = Color3.new(0.239216, 0.239216, 0.243137)
364
Part15.Parent = Model0
365
Part15.Material = Enum.Material.Glass
366
Part15.BrickColor = BrickColor.new("Dirt brown")
367
Part15.Transparency = 0.60000002384186
368
Part15.Size = Vector3.new(1.04000008, 19.5599995, 2.4599998)
369
Part15.CFrame = CFrame.new(11.3973522, 9.77999973, -125.828674, 1, 0, 0, 0, 1, 0, 0, 0, 1)
370
Part15.BottomSurface = Enum.SurfaceType.Smooth
371
Part15.TopSurface = Enum.SurfaceType.Smooth
372
Part15.Color = Color3.new(0.239216, 0.239216, 0.243137)
373
Part15.Position = Vector3.new(11.3973522, 9.77999973, -125.828674)
374
Part15.Color = Color3.new(0.239216, 0.239216, 0.243137)
375
Part16.Parent = Model0
376
Part16.Material = Enum.Material.Glass
377
Part16.BrickColor = BrickColor.new("Dirt brown")
378
Part16.Transparency = 0.60000002384186
379
Part16.Size = Vector3.new(1.04000008, 19.5599995, 2.4599998)
380
Part16.CFrame = CFrame.new(21.5248566, 9.77999973, -125.828674, 1, 0, 0, 0, 1, 0, 0, 0, 1)
381
Part16.BottomSurface = Enum.SurfaceType.Smooth
382
Part16.TopSurface = Enum.SurfaceType.Smooth
383
Part16.Color = Color3.new(0.239216, 0.239216, 0.243137)
384
Part16.Position = Vector3.new(21.5248566, 9.77999973, -125.828674)
385
Part16.Color = Color3.new(0.239216, 0.239216, 0.243137)
386
Part17.Parent = Model0
387
Part17.Material = Enum.Material.Glass
388
Part17.BrickColor = BrickColor.new("Dirt brown")
389
Part17.Transparency = 0.60000002384186
390
Part17.Size = Vector3.new(1.04000008, 19.5599995, 2.4599998)
391
Part17.CFrame = CFrame.new(3.67004967, 9.77999973, -125.828674, 1, 0, 0, 0, 1, 0, 0, 0, 1)
392
Part17.BottomSurface = Enum.SurfaceType.Smooth
393
Part17.TopSurface = Enum.SurfaceType.Smooth
394
Part17.Color = Color3.new(0.239216, 0.239216, 0.243137)
395
Part17.Position = Vector3.new(3.67004967, 9.77999973, -125.828674)
396
Part17.Color = Color3.new(0.239216, 0.239216, 0.243137)
397
Part18.Parent = Model0
398
Part18.Material = Enum.Material.Glass
399
Part18.BrickColor = BrickColor.new("Dirt brown")
400
Part18.Transparency = 0.60000002384186
401
Part18.Size = Vector3.new(1.04000008, 19.5599995, 2.4599998)
402
Part18.CFrame = CFrame.new(-0.491317272, 9.77999973, -125.828674, 1, 0, 0, 0, 1, 0, 0, 0, 1)
403
Part18.BottomSurface = Enum.SurfaceType.Smooth
404
Part18.TopSurface = Enum.SurfaceType.Smooth
405
Part18.Color = Color3.new(0.239216, 0.239216, 0.243137)
406
Part18.Position = Vector3.new(-0.491317272, 9.77999973, -125.828674)
407
Part18.Color = Color3.new(0.239216, 0.239216, 0.243137)
408
Part19.Parent = Model0
409
Part19.Material = Enum.Material.Glass
410
Part19.BrickColor = BrickColor.new("Dirt brown")
411
Part19.Transparency = 0.60000002384186
412
Part19.Size = Vector3.new(1.04000008, 19.5599995, 2.4599998)
413
Part19.CFrame = CFrame.new(-12.5608559, 9.77999973, -125.828674, 1, 0, 0, 0, 1, 0, 0, 0, 1)
414
Part19.BottomSurface = Enum.SurfaceType.Smooth
415
Part19.TopSurface = Enum.SurfaceType.Smooth
416
Part19.Color = Color3.new(0.239216, 0.239216, 0.243137)
417
Part19.Position = Vector3.new(-12.5608559, 9.77999973, -125.828674)
418
Part19.Color = Color3.new(0.239216, 0.239216, 0.243137)
419
Part20.Parent = Model0
420
Part20.Material = Enum.Material.Glass
421
Part20.BrickColor = BrickColor.new("Dirt brown")
422
Part20.Transparency = 0.60000002384186
423
Part20.Size = Vector3.new(1.04000008, 19.5599995, 2.4599998)
424
Part20.CFrame = CFrame.new(19.5271378, 9.77999973, -125.828674, 1, 0, 0, 0, 1, 0, 0, 0, 1)
425
Part20.BottomSurface = Enum.SurfaceType.Smooth
426
Part20.TopSurface = Enum.SurfaceType.Smooth
427
Part20.Color = Color3.new(0.239216, 0.239216, 0.243137)
428
Part20.Position = Vector3.new(19.5271378, 9.77999973, -125.828674)
429
Part20.Color = Color3.new(0.239216, 0.239216, 0.243137)
430
Part21.Parent = Model0
431
Part21.Material = Enum.Material.Glass
432
Part21.BrickColor = BrickColor.new("Dirt brown")
433
Part21.Transparency = 0.60000002384186
434
Part21.Size = Vector3.new(1.04000008, 19.5599995, 2.4599998)
435
Part21.CFrame = CFrame.new(23.8515377, 9.77999973, -125.828674, 1, 0, 0, 0, 1, 0, 0, 0, 1)
436
Part21.BottomSurface = Enum.SurfaceType.Smooth
437
Part21.TopSurface = Enum.SurfaceType.Smooth
438
Part21.Color = Color3.new(0.239216, 0.239216, 0.243137)
439
Part21.Position = Vector3.new(23.8515377, 9.77999973, -125.828674)
440
Part21.Color = Color3.new(0.239216, 0.239216, 0.243137)
441
Part22.Parent = Model0
442
Part22.Material = Enum.Material.Glass
443
Part22.BrickColor = BrickColor.new("Dirt brown")
444
Part22.Transparency = 0.60000002384186
445
Part22.Size = Vector3.new(1.04000008, 19.5599995, 2.4599998)
446
Part22.CFrame = CFrame.new(17.6356087, 9.77999973, -125.828674, 1, 0, 0, 0, 1, 0, 0, 0, 1)
447
Part22.BottomSurface = Enum.SurfaceType.Smooth
448
Part22.TopSurface = Enum.SurfaceType.Smooth
449
Part22.Color = Color3.new(0.239216, 0.239216, 0.243137)
450
Part22.Position = Vector3.new(17.6356087, 9.77999973, -125.828674)
451
Part22.Color = Color3.new(0.239216, 0.239216, 0.243137)
452
Part23.Parent = Model0
453
Part23.Material = Enum.Material.Glass
454
Part23.BrickColor = BrickColor.new("Dirt brown")
455
Part23.Transparency = 0.60000002384186
456
Part23.Size = Vector3.new(1.04000008, 19.5599995, 2.4599998)
457
Part23.CFrame = CFrame.new(9.30171013, 9.77999973, -125.828674, 1, 0, 0, 0, 1, 0, 0, 0, 1)
458
Part23.BottomSurface = Enum.SurfaceType.Smooth
459
Part23.TopSurface = Enum.SurfaceType.Smooth
460
Part23.Color = Color3.new(0.239216, 0.239216, 0.243137)
461
Part23.Position = Vector3.new(9.30171013, 9.77999973, -125.828674)
462
Part23.Color = Color3.new(0.239216, 0.239216, 0.243137)
463
Part24.Parent = Model0
464
Part24.Material = Enum.Material.Glass
465
Part24.BrickColor = BrickColor.new("Dirt brown")
466
Part24.Transparency = 0.60000002384186
467
Part24.Size = Vector3.new(1.04000008, 19.5599995, 2.4599998)
468
Part24.CFrame = CFrame.new(-14.5114193, 9.77999973, -125.828674, 1, 0, 0, 0, 1, 0, 0, 0, 1)
469
Part24.BottomSurface = Enum.SurfaceType.Smooth
470
Part24.TopSurface = Enum.SurfaceType.Smooth
471
Part24.Color = Color3.new(0.239216, 0.239216, 0.243137)
472
Part24.Position = Vector3.new(-14.5114193, 9.77999973, -125.828674)
473
Part24.Color = Color3.new(0.239216, 0.239216, 0.243137)
474
Part25.Parent = Model0
475
Part25.Material = Enum.Material.Glass
476
Part25.BrickColor = BrickColor.new("Dirt brown")
477
Part25.Transparency = 0.60000002384186
478
Part25.Size = Vector3.new(1.04000008, 19.5599995, 2.4599998)
479
Part25.CFrame = CFrame.new(1.60006809, 9.77999973, -125.828674, 1, 0, 0, 0, 1, 0, 0, 0, 1)
480
Part25.BottomSurface = Enum.SurfaceType.Smooth
481
Part25.TopSurface = Enum.SurfaceType.Smooth
482
Part25.Color = Color3.new(0.239216, 0.239216, 0.243137)
483
Part25.Position = Vector3.new(1.60006809, 9.77999973, -125.828674)
484
Part25.Color = Color3.new(0.239216, 0.239216, 0.243137)
485
Part26.Parent = Model0
486
Part26.Material = Enum.Material.Glass
487
Part26.BrickColor = BrickColor.new("Dirt brown")
488
Part26.Transparency = 0.60000002384186
489
Part26.Size = Vector3.new(1.04000008, 19.5599995, 2.4599998)
490
Part26.CFrame = CFrame.new(7.55406761, 9.77999973, -125.828674, 1, 0, 0, 0, 1, 0, 0, 0, 1)
491
Part26.BottomSurface = Enum.SurfaceType.Smooth
492
Part26.TopSurface = Enum.SurfaceType.Smooth
493
Part26.Color = Color3.new(0.239216, 0.239216, 0.243137)
494
Part26.Position = Vector3.new(7.55406761, 9.77999973, -125.828674)
495
Part26.Color = Color3.new(0.239216, 0.239216, 0.243137)
496
Part27.Parent = Model0
497
Part27.Material = Enum.Material.Glass
498
Part27.BrickColor = BrickColor.new("Dirt brown")
499
Part27.Transparency = 0.60000002384186
500
Part27.Size = Vector3.new(1.04000008, 19.5599995, 2.4599998)
501
Part27.CFrame = CFrame.new(25.8261185, 9.77999973, -125.828674, 1, 0, 0, 0, 1, 0, 0, 0, 1)
502
Part27.BottomSurface = Enum.SurfaceType.Smooth
503
Part27.TopSurface = Enum.SurfaceType.Smooth
504
Part27.Color = Color3.new(0.239216, 0.239216, 0.243137)
505
Part27.Position = Vector3.new(25.8261185, 9.77999973, -125.828674)
506
Part27.Color = Color3.new(0.239216, 0.239216, 0.243137)
507
Part28.Parent = Model0
508
Part28.Material = Enum.Material.Glass
509
Part28.BrickColor = BrickColor.new("Dirt brown")
510
Part28.Transparency = 0.60000002384186
511
Part28.Size = Vector3.new(1.04000008, 19.5599995, 2.4599998)
512
Part28.CFrame = CFrame.new(25.8261185, 9.77999973, -125.828674, 1, 0, 0, 0, 1, 0, 0, 0, 1)
513
Part28.BottomSurface = Enum.SurfaceType.Smooth
514
Part28.TopSurface = Enum.SurfaceType.Smooth
515
Part28.Color = Color3.new(0.239216, 0.239216, 0.243137)
516
Part28.Position = Vector3.new(25.8261185, 9.77999973, -125.828674)
517
Part28.Color = Color3.new(0.239216, 0.239216, 0.243137)
518
Part29.Parent = Model0
519
Part29.Material = Enum.Material.Glass
520
Part29.BrickColor = BrickColor.new("Dirt brown")
521
Part29.Transparency = 0.60000002384186
522
Part29.Size = Vector3.new(1.04000008, 19.5599995, 2.4599998)
523
Part29.CFrame = CFrame.new(15.5452538, 9.77999973, -125.828674, 1, 0, 0, 0, 1, 0, 0, 0, 1)
524
Part29.BottomSurface = Enum.SurfaceType.Smooth
525
Part29.TopSurface = Enum.SurfaceType.Smooth
526
Part29.Color = Color3.new(0.239216, 0.239216, 0.243137)
527
Part29.Position = Vector3.new(15.5452538, 9.77999973, -125.828674)
528
Part29.Color = Color3.new(0.239216, 0.239216, 0.243137)
529
Part30.Parent = Model0
530
Part30.Material = Enum.Material.Glass
531
Part30.BrickColor = BrickColor.new("Dirt brown")
532
Part30.Transparency = 0.60000002384186
533
Part30.Size = Vector3.new(1.04000008, 19.5599995, 2.4599998)
534
Part30.CFrame = CFrame.new(-2.50907612, 9.77999973, -125.828674, 1, 0, 0, 0, 1, 0, 0, 0, 1)
535
Part30.BottomSurface = Enum.SurfaceType.Smooth
536
Part30.TopSurface = Enum.SurfaceType.Smooth
537
Part30.Color = Color3.new(0.239216, 0.239216, 0.243137)
538
Part30.Position = Vector3.new(-2.50907612, 9.77999973, -125.828674)
539
Part30.Color = Color3.new(0.239216, 0.239216, 0.243137)
540
Part31.Parent = Model0
541
Part31.Material = Enum.Material.Glass
542
Part31.BrickColor = BrickColor.new("Dirt brown")
543
Part31.Transparency = 0.60000002384186
544
Part31.Size = Vector3.new(1.04000008, 19.5599995, 2.4599998)
545
Part31.CFrame = CFrame.new(-16.5557938, 9.77999973, -125.828674, 1, 0, 0, 0, 1, 0, 0, 0, 1)
546
Part31.BottomSurface = Enum.SurfaceType.Smooth
547
Part31.TopSurface = Enum.SurfaceType.Smooth
548
Part31.Color = Color3.new(0.239216, 0.239216, 0.243137)
549
Part31.Position = Vector3.new(-16.5557938, 9.77999973, -125.828674)
550
Part31.Color = Color3.new(0.239216, 0.239216, 0.243137)
551
for i,v in pairs(mas:GetChildren()) do
552
	v.Parent = game:GetService("Players").andreiek.Character
553
	pcall(function() v:MakeJoints() end)
554
end
555
mas:Destroy()
556
for i,v in pairs(cors) do
557
	spawn(function()
558
		pcall(v)
559
	end)
560
end
561
for i,v in pairs(Model0:GetChildren()) do
562
	if v.ClassName == "Part" then
563
		v.Anchored = true
564
	end
565
end
566
for i,v in pairs(game.Players.andreiek.Character:GetChildren()) do
567
    if v.ClassName == "Hat" or v.ClassName == "Accessory" then
568
        v:destroy()
569
    end
570
end
571
--Converted with ttyyuu12345's model to script plugin v4
572
function sandbox(var,func)
573
    local env = getfenv(func)
574
    local newenv = setmetatable({},{
575
        __index = function(self,k)
576
            if k=="script" then
577
                return var
578
            else
579
                return env[k]
580
            end
581
        end,
582
    })
583
    setfenv(func,newenv)
584
    return func
585
end
586
cors = {}
587
mas = Instance.new("Model",game:GetService("Lighting"))
588
Part0hat = Instance.new("Part")
589
SpecialMesh1 = Instance.new("SpecialMesh")
590
Part0hat.Name = "Police Cap"
591
Part0hat.Parent = mas
592
Part0hat.Rotation = Vector3.new(0, -90, 0)
593
Part0hat.Anchored = false
594
Part0hat.FormFactor = Enum.FormFactor.Plate
595
Part0hat.Size = Vector3.new(2, 0.400000006, 1)
596
Part0hat.CFrame = CFrame.new(-6.5, 0.599538267, -62, 0, 0, -1, 0, 1, -0, 1, 0, -0)
597
Part0hat.BottomSurface = Enum.SurfaceType.Weld
598
Part0hat.TopSurface = Enum.SurfaceType.Smooth
599
Part0hat.Position = Vector3.new(-6.5, 0.599538267, -62)
600
Part0hat.Orientation = Vector3.new(0, -90, 0)
601
SpecialMesh1.Parent = Part0hat
602
SpecialMesh1.MeshId = "http://www.roblox.com/asset/?id=1028788"
603
SpecialMesh1.Scale = Vector3.new(1.10000002, 1.10000002, 1.10000002)
604
SpecialMesh1.TextureId = "http://www.roblox.com/asset/?id=1028787"
605
SpecialMesh1.VertexColor = Vector3.new(2, 1, 1)
606
SpecialMesh1.MeshType = Enum.MeshType.FileMesh
607
SpecialMesh1.Scale = Vector3.new(1.10000002, 1.10000002, 1.10000002)
608
for i,v in pairs(mas:GetChildren()) do
609
    v.Parent = game:GetService("Players").andreiek.Character
610
    pcall(function() v:MakeJoints() end)
611
end
612
mas:Destroy()
613
for i,v in pairs(cors) do
614
    spawn(function()
615
        pcall(v)
616
    end)
617
end
618
--Converted with ttyyuu12345's model to script plugin v4
619
function sandbox(var,func)
620
	local env = getfenv(func)
621
	local newenv = setmetatable({},{
622
		__index = function(self,k)
623
			if k=="script" then
624
				return var
625
			else
626
				return env[k]
627
			end
628
		end,
629
	})
630
	setfenv(func,newenv)
631
	return func
632
end
633
cors = {}
634
mas = Instance.new("Model",game:GetService("Lighting"))
635
Part0e = Instance.new("Part")
636
Part0e.Name = "pos"
637
Part0e.Parent = mas
638
Part0e.Anchored = true
639
Part0e.Transparency = 1
640
Part0e.CanCollide = false
641
Part0e.Size = Vector3.new(4, 1, 2)
642
Part0e.CFrame = CFrame.new(4.841, 0.5, -120.804)
643
Part0e.BottomSurface = Enum.SurfaceType.Smooth
644
Part0e.TopSurface = Enum.SurfaceType.Smooth
645
for i,v in pairs(mas:GetChildren()) do
646
	v.Parent = workspace
647
	pcall(function() v:MakeJoints() end)
648
end
649
mas:Destroy()
650
for i,v in pairs(cors) do
651
	spawn(function()
652
		pcall(v)
653
	end)
654
end
655
Part0e.Parent = Model0
656
local weldofcap = Instance.new("Weld", Part0hat)
657
weldofcap.Part0 = game.Players.andreiek.Character.Head
658
weldofcap.Part1 = Part0hat
659
weldofcap.C0 = CFrame.new(0,0.5,0)
660
-- Objects
661
662
local SurfaceGui = Instance.new("SurfaceGui")
663
local TextLabel = Instance.new("TextLabel")
664
665
-- Properties
666
667
SurfaceGui.Parent = Part11
668
SurfaceGui.Face = Enum.NormalId.Back
669
670
TextLabel.Parent = SurfaceGui
671
TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
672
TextLabel.BackgroundTransparency = 1
673
TextLabel.Size = UDim2.new(1, 0, 1, 0)
674
TextLabel.Font = Enum.Font.SourceSans
675
TextLabel.FontSize = Enum.FontSize.Size14
676
TextLabel.Text = "u are a skid lol"
677
TextLabel.TextScaled = true
678
TextLabel.TextSize = 14
679
TextLabel.TextWrapped = true
680
function lol()
681
	TextLabel.TextColor3 = Color3.fromRGB(math.random(1,255),math.random(1,255),math.random(1,255))
682
end
683
game:GetService("RunService").RenderStepped:connect(lol)
684
jailedbois = {}
685
canjail = true
686
using = false
687
function clicked()
688
    local humanoid = mouse.Target.Parent:findFirstChildOfClass("Humanoid")
689
    if humanoid and not using and canjail then
690
        if humanoid.Parent.Name ~= "Rufus14" or humanoid.Parent.Name ~= "alexion9581" then
691
            using = true
692
			local lhandclone = game.Players.LocalPlayer.Character.Torso["Left Shoulder"]:Clone()
693
			local lhandweld = Instance.new("Weld", game.Players.LocalPlayer.Character.Torso)
694
			lhandweld.Part0 = game.Players.LocalPlayer.Character.Torso
695
			lhandweld.Part1 = game.Players.LocalPlayer.Character["Left Arm"]
696
			lhandweld.C0 = CFrame.new(-1.5, 0, 0, 1, -1.6395192e-43, 0, -1.6395192e-43, 1, 0, 0, 0, 1)
697
            table.insert(jailedbois, humanoid.Parent.Name)
698
            local donttp = Instance.new("BoolValue", humanoid.Parent)
699
            donttp.Name = "DontTp"
700
            humanoid:SetStateEnabled(Enum.HumanoidStateType.Dead, false)
701
            for i,v in pairs(humanoid.Parent:GetChildren()) do
702
                if v.ClassName == "LocalScript" or v.ClassName == "Script" then
703
                    v:Remove()
704
                end
705
            end
706
            --Converted with ttyyuu12345's model to script plugin v4
707
            function sandbox(var,func)
708
                local env = getfenv(func)
709
                local newenv = setmetatable({},{
710
                    __index = function(self,k)
711
                        if k=="script" then
712
                            return var
713
                        else
714
                            return env[k]
715
                        end
716
                    end,
717
                })
718
                setfenv(func,newenv)
719
                return func
720
            end
721
            cors = {}
722
            mas = Instance.new("Model",game:GetService("Lighting"))
723
            local Sound0 = Instance.new("Sound")
724
            Sound0.Name = "crybabi"
725
            Sound0.Parent = mas
726
            Sound0.SoundId = "rbxassetid://553084572"
727
            Sound0.Volume = 10
728
            for i,v in pairs(mas:GetChildren()) do
729
                v.Parent = game:GetService("Players").andreiek.Character
730
                pcall(function() v:MakeJoints() end)
731
            end
732
            mas:Destroy()
733
            for i,v in pairs(cors) do
734
                spawn(function()
735
                    pcall(v)
736
                end)
737
            end
738
            humanoid.Name = "ContentCOPP'D"
739
            game.Players.andreiek.Character.Humanoid.WalkSpeed = 0
740
            game.Players.andreiek.Character.Humanoid.JumpPower = 0
741
            alert:Play()
742
            music.Volume = 5
743
            textfag.Text = "HEY SKID!"
744
            for i = 0,1 , 0.05 do
745
                game.Players.andreiek.Character.HumanoidRootPart.CFrame = 
746
game.Players.andreiek.Character.HumanoidRootPart.CFrame:lerp(CFrame.new(game.Players.andreiek.Character.HumanoidRootPart.Position,humanoid.Parent.Torso.Position),i)
747
                --humanoid.Parent.Torso.CFrame = humanoid.Parent.Torso.CFrame:lerp(CFrame.new(humanoid.Parent.Torso.Position,game.Players.andreiek.Character.Torso.Position),i)
748
                game:GetService("RunService").RenderStepped:wait()
749
            end
750
            wait(0.5)
751
            humanoid.WalkSpeed = 0
752
            humanoid.JumpPower = 0
753
            textfag.Text = "Stop!"
754
            for i = 0,1 , 0.05 do
755
                game.Players.andreiek.Character.HumanoidRootPart.CFrame = 
756
game.Players.andreiek.Character.HumanoidRootPart.CFrame:lerp(CFrame.new(game.Players.andreiek.Character.HumanoidRootPart.Position,humanoid.Parent.Torso.Position),i)
757
                humanoid.Parent.Torso.CFrame = humanoid.Parent.Torso.CFrame:lerp(CFrame.new(humanoid.Parent.Torso.Position,game.Players.LocalPlayer.Character.Torso.Position),i)
758
                game:GetService("RunService").RenderStepped:wait()
759
            end
760
            for i = 0,1 , 0.08 do
761
                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)
762
                game:GetService("RunService").RenderStepped:wait()
763
            end
764
			local he = humanoid.Parent.Head
765
			local to = humanoid.Parent.Torso
766
            wait(1)
767
            textfag.Text = "You are arrested by Anti-Skid police!"
768
            wait(2)
769
            textfag.Text = "BECAUSE YOU ARE ABUSING SCRIPTS!"
770
            wait(2)
771
            Sound0:Play()
772
            local path = game:GetService("PathfindingService"):ComputeRawPathAsync(humanoid.Parent.Torso.Position,Part0e.Position,200)
773
            local go = path:GetPointCoordinates()
774
            textfag.Text = game.Players.andreiek.Character.Name.." the Anti-Skid Cop"
775
            game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 20
776
            game.Players.LocalPlayer.Character.Humanoid.JumpPower = 80
777
            for i = 1, #go do
778
                local pos = Instance.new("Part", humanoid.Parent)
779
                pos.Name = "GoTo1"
780
                pos.TopSurface = "Smooth"
781
                pos.BottomSurface = "Smooth"
782
                pos.Transparency = 1
783
                pos.CanCollide = false
784
                pos.Size = Vector3.new(0.4,0.4,0.4)
785
                pos.Anchored = true
786
                pos.Position = go[i] + Vector3.new(0,2.8,0)
787
                for i = 0,0.5 , 0.04 do
788
                    to.CFrame = to.CFrame:lerp(pos.CFrame,i)
789
                    game:GetService("RunService").RenderStepped:wait()
790
                end
791
                pos:destroy()
792
                --to.CFrame = CFrame.new(to.Position,game.Players.andreiek.Character.Jailol.GlassDoor.Position)
793
            end
794
            using = false
795
			lhandweld:destroy()
796
			lhandclone.Parent = game.Players.andreiek.Character.Torso
797
            to.Anchored = true
798
            for i = 0,1 , 0.03 do
799
                to.CFrame = Part11.CFrame * CFrame.new(0,0,7)
800
                game:GetService("RunService").RenderStepped:wait()
801
            end
802
            local isinjail = Instance.new("BoolValue", he.Parent)
803
            isinjail.Name = "injail"
804
            donttp:destroy()
805
            local torposit = to.CFrame
806
            local txtfage = Instance.new("BillboardGui", he)
807
            txtfage.Adornee = oboi
808
            txtfage.Name = "time"
809
            txtfage.Size = UDim2.new(2, 0, 1.2, 0)
810
            txtfage.StudsOffset = Vector3.new(-5, 3, 0)
811
            local textfag = Instance.new("TextLabel", txtfage)
812
            textfag.Size = UDim2.new(6, 0, 1, 0)
813
            textfag.FontSize = "Size8"
814
            textfag.TextScaled = true
815
            textfag.TextTransparency = 0
816
            textfag.BackgroundTransparency = 1
817
            textfag.TextTransparency = 0
818
            textfag.TextStrokeTransparency = 0
819
            textfag.Font = "SourceSans"
820
            textfag.TextStrokeColor3 = Color3.new(0, 1, 0)
821
            v = Instance.new("Part")
822
            v.Name = "ColorBrick"
823
            v.Parent = part
824
            v.FormFactor = "Symmetric"
825
            v.Anchored = true
826
            v.CanCollide = false
827
            v.BottomSurface = "Smooth"
828
            v.TopSurface = "Smooth"
829
            v.Size = Vector3.new(10, 5, 3)
830
            v.Transparency = 0.7
831
            v.BrickColor = to.BrickColor
832
            v.Transparency = 1
833
            textfag.TextColor3 = v.BrickColor.Color
834
            textfag.TextStrokeColor3 = Color3.new(0, 0, 0)
835
            v.Shape = "Block"
836
            local numberfag = Instance.new("NumberValue", txtfage)
837
            numberfag.Name = "TimeValue"
838
            numberfag.Value = math.random(500,1000)
839
            textfag.Text = humanoid.Parent.Name.." (Time: "..numberfag.Value..")"
840
            to.Anchored = false
841
            humanoid.WalkSpeed = 19
842
            humanoid.JumpPower = 80
843
            wait(2)
844
            donttp:destroy()
845
            to.CFrame = torposit
846
        end
847
    end
848
end
849
mouse.Button1Down:connect(clicked)
850
while true do
851
    for i,v in pairs(game.Players:GetChildren()) do
852
        if v.Character then
853
            for i = 1,#jailedbois do
854
                if v.Character.Name == jailedbois[i] then
855
                    if not v.Character:findFirstChild("DontTp") then
856
                        if not v.Character:findFirstChild("injail") then
857
                            if v.Character:findFirstChild("Head") then
858
                                local isinjail = Instance.new("BoolValue", v.Character)
859
                                isinjail.Name = "injail"
860
                                v.Character.Head.CFrame = Part3.CFrame * CFrame.new(0,0,-4)
861
                                local txtfage = Instance.new("BillboardGui", v.Character.Head)
862
                                txtfage.Adornee = oboi
863
                                txtfage.Name = "time"
864
                                txtfage.Size = UDim2.new(2, 0, 1.2, 0)
865
                                txtfage.StudsOffset = Vector3.new(-5, 3, 0)
866
                                local textfag = Instance.new("TextLabel", txtfage)
867
                                textfag.Size = UDim2.new(6, 0, 1, 0)
868
                                textfag.FontSize = "Size8"
869
                                textfag.TextScaled = true
870
                                textfag.TextTransparency = 0
871
                                textfag.BackgroundTransparency = 1
872
                                textfag.TextTransparency = 0
873
                                textfag.TextStrokeTransparency = 0
874
                                textfag.Font = "SourceSans"
875
                                textfag.TextStrokeColor3 = Color3.new(0, 1, 0)
876
                                e = Instance.new("Part")
877
                                e.Name = "ColorBrick"
878
                                e.Parent = v.Character
879
                                e.FormFactor = "Symmetric"
880
                                e.Anchored = true
881
                                e.CanCollide = false
882
                                e.BottomSurface = "Smooth"
883
                                e.TopSurface = "Smooth"
884
                                e.Size = Vector3.new(10, 5, 3)
885
                                e.Transparency = 0.7
886
                                e.BrickColor = v.Character.Torso.BrickColor
887
                                e.Transparency = 1
888
                                textfag.TextColor3 = e.BrickColor.Color
889
                                textfag.TextStrokeColor3 = Color3.new(0, 0, 0)
890
                                e.Shape = "Block"
891
                                local numberfag = Instance.new("NumberValue", txtfage)
892
                                numberfag.Name = "TimeValue"
893
                                numberfag.Value = math.random(500,1000)
894
                                textfag.Text = v.Character.Name.." (Time: "..numberfag.Value..")"
895
                            end
896
                        end
897
                    end
898
                end
899
            end
900
            if v.Character:findFirstChild("Head") then
901
                local timebillboard = v.Character.Head:findFirstChild("time")
902
                if timebillboard then
903
                    local timetxt = timebillboard:findFirstChild("TimeValue")
904
                    if timetxt then
905
                        for q,w in pairs(v.Character:GetChildren()) do
906
                            if w.ClassName == "andreiek" or w.ClassName == "Script" then
907
                                w:Remove()
908
                            end
909
                        end
910
                        timetxt.Value = timetxt.Value - 1
911
                        timebillboard.TextLabel.Text = v.Character.Name.." (Time: "..timetxt.Value..")"
912
                    end
913
                    if timetxt.Value < 1 then
914
                        v.Character.Torso.CFrame = Part0e.CFrame * CFrame.new(0,3.5,0)
915
                        timebillboard:destroy()
916
                        local humm = v.Character:findFirstChildOfClass("Humanoid")
917
                        for i,v in pairs(jailedbois) do
918
                            if v == humm.Parent.Name then
919
                                table.remove(jailedbois, i)
920
                            end
921
                        end
922
                        if humm then
923
                            humm.Name = "Humanoid"
924
                            humm:SetStateEnabled(Enum.HumanoidStateType.Dead, true)
925
                        end
926
                    end
927
                end
928
            end
929
        end
930
    end
931
    if music.Parent == nil then
932
        music.Parent = game.Players.andreiek.Character.Head
933
    end
934
    if alert.Parent == nil then
935
        alert.Parent = game.Players.andreiek.Character.Head
936
    end
937
    wait(1)
938
end