Advertisement
Eminic

cop

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