Advertisement
zed_isJayTheLionJR

Untitled

May 19th, 2018
189
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 12.96 KB | None | 0 0
  1. local p = game.Players.JayTheLionJR
  2. local char = p.Character
  3. local size = 4
  4. part = function()
  5.  
  6. local a = Instance.new("Part", script)
  7. a.Anchored = true
  8. a.CanCollide = true
  9. a.CFrame = char.Torso.CFrame
  10. a.Size = Vector3.new(size, 0.2, 0.2)
  11. a.Transparency = 1
  12. return a
  13. end
  14.  
  15. part2 = function()
  16.  
  17. local a = Instance.new("Part", script)
  18. a.Anchored = true
  19. a.CanCollide = true
  20. a.CFrame = char.Torso.CFrame
  21. a.Size = Vector3.new(0.2, size, 0.2)
  22. a.Transparency = 1
  23. return a
  24. end
  25.  
  26. part3 = function()
  27.  
  28. local a = Instance.new("Part", script)
  29. a.Anchored = true
  30. a.CanCollide = false
  31. a.Size = Vector3.new(size, size, 1)
  32. a.Transparency = 1
  33. a.Material = "Neon"
  34. a.BrickColor = BrickColor.new("Really red")
  35. local b = Instance.new("BlockMesh", a)
  36. b.Scale = Vector3.new(1, 1, 0)
  37. return a
  38. end
  39.  
  40. local replicating = false
  41. local root, a, b, c, d, a2, b2, c2, d2, aa, bb, cc, dd, z, x, c, v, b, n = nil, nil, nil, nil, nil, nil, nil, nil, nil, nil, nil, nil, nil, nil, nil, nil, nil, nil, nil
  42. replicate = function()
  43.  
  44. replicating = true
  45. script:ClearAllChildren()
  46. root = part()
  47. root.Transparency = 1
  48. root.Size = Vector3.new(0.2, 0.2, 0.2)
  49. root.CanCollide = false
  50. a = part()
  51. b = part()
  52. c = part()
  53. d = part()
  54. a2 = part()
  55. b2 = part()
  56. c2 = part()
  57. d2 = part()
  58. aa = part2()
  59. bb = part2()
  60. cc = part2()
  61. dd = part2()
  62. z = part3()
  63. x = part3()
  64. c = part3()
  65. v = part3()
  66. b = part3()
  67. n = part3()
  68. replicating = false
  69. end
  70.  
  71. script.ChildRemoved:connect(function(a)
  72.  
  73. if a.ClassName == "Part" and replicating == false then
  74. replicate()
  75. end
  76. end
  77. )
  78. replicate()
  79. local tick = 0
  80. CreateRegion3FromLocAndSize = function(Position, Size)
  81.  
  82. local SizeOffset = Size / 2
  83. local Point1 = Position - SizeOffset
  84. local Point2 = Position + SizeOffset
  85. return Region3.new(Point1, Point2)
  86. end
  87.  
  88. local set = false
  89. local whitelist = {"Hieroku", "PPATTA", "DevGamerzz", "I kill U", "kash5", "ZeroCrimson", "Zaidia", "tsup2", "PointCoded", "CLarramore", "Suzuuki", "", "", ""}
  90. p.Chatted:connect(function(ms)
  91.  
  92. if ms:sub(1, 5) == "size-" then
  93. size = tonumber(ms:sub(6))
  94. replicate()
  95. else
  96. if ms:sub(1, 4) == "set-" then
  97. set = true
  98. z.CanCollide = false
  99. x.CanCollide = false
  100. c.CanCollide = false
  101. v.CanCollide = false
  102. b.CanCollide = false
  103. n.CanCollide = false
  104. else
  105. if ms:sub(1, 6) == "unset-" then
  106. set = false
  107. z.CanCollide = false
  108. x.CanCollide = false
  109. c.CanCollide = false
  110. v.CanCollide = false
  111. b.CanCollide = false
  112. n.CanCollide = false
  113. else
  114. if ms:sub(1, 10) == "whitelist-" then
  115. table.insert(whitelist, ms:sub(11))
  116. else
  117. if ms:sub(1, 12) == "unwhitelist-" then
  118. for i,v in pairs(whitelist) do
  119. if ms:sub(13) == v then
  120. table.remove(whitelist, i)
  121. break
  122. end
  123. end
  124. end
  125. end
  126. end
  127. end
  128. end
  129. end
  130. )
  131. local magicpos = nil
  132. game:GetService("RunService").Heartbeat:connect(function()
  133.  
  134. pcall(function()
  135.  
  136. local void = char:GetChildren()
  137. for _,pl in pairs(whitelist) do
  138. if game.Players:FindFirstChild(pl) ~= nil and game.Players:FindFirstChild(pl).Character ~= nil then
  139. for i,v in pairs(game.Players[pl].Character:GetChildren()) do
  140. table.insert(void, v)
  141. end
  142. end
  143. end
  144. for i,v in pairs(game.Players:GetPlayers()) do
  145. if v.Character:isDescendantOf(char) and not v.Name == "FangxWulf" then
  146. v:LoadCharacter()
  147. end
  148. end
  149. char.Humanoid.Health = math.huge
  150. tick = tick + 0.01
  151. if not set then
  152. root.CFrame = root.CFrame:lerp(CFrame.new(char.Torso.CFrame.p) * CFrame.Angles(math.sin(tick) * 100 / 30 / (size / 2), math.cos(tick) * 100 / 30 / (size / 2), math.cos(tick) * 100 / 30 / (size / 2)), 0.1)
  153. magicpos = char.Torso.CFrame
  154. else
  155. root.CFrame = root.CFrame:lerp(CFrame.new(magicpos.p) * CFrame.Angles(0, 0, 0), 0.05)
  156. end
  157. local reg = CreateRegion3FromLocAndSize(root.CFrame.p, Vector3.new(size, size, size))
  158. for i,v in pairs(game.Workspace:FindPartsInRegion3WithIgnoreList(reg, void, 100)) do
  159. if v.Name ~= "Base" then
  160. v:Destroy()
  161. end
  162. end
  163. a.CFrame = root.CFrame * CFrame.new(size / 2, size / 2, 0) * CFrame.Angles(0, math.rad(90), 0)
  164. b.CFrame = root.CFrame * CFrame.new(-size / 2, size / 2, 0) * CFrame.Angles(0, math.rad(90), 0)
  165. c.CFrame = root.CFrame * CFrame.new(0, size / 2, size / 2)
  166. d.CFrame = root.CFrame * CFrame.new(0, size / 2, -size / 2)
  167. a2.CFrame = root.CFrame * CFrame.new(size / 2, -size / 2, 0) * CFrame.Angles(0, math.rad(90), 0)
  168. b2.CFrame = root.CFrame * CFrame.new(-size / 2, -size / 2, 0) * CFrame.Angles(0, math.rad(90), 0)
  169. c2.CFrame = root.CFrame * CFrame.new(0, -size / 2, size / 2)
  170. d2.CFrame = root.CFrame * CFrame.new(0, -size / 2, -size / 2)
  171. aa.CFrame = root.CFrame * CFrame.new(size / 2, 0, size / 2)
  172. bb.CFrame = root.CFrame * CFrame.new(-size / 2, 0, size / 2)
  173. cc.CFrame = root.CFrame * CFrame.new(-size / 2, 0, -size / 2)
  174. dd.CFrame = root.CFrame * CFrame.new(size / 2, 0, -size / 2)
  175. z.CFrame = root.CFrame * CFrame.new(size / 2, 0, 0) * CFrame.Angles(0, math.rad(90), 0)
  176. x.CFrame = root.CFrame * CFrame.new(-size / 2, 0, 0) * CFrame.Angles(0, math.rad(90), 0)
  177. c.CFrame = root.CFrame * CFrame.new(0, 0, size / 2) * CFrame.Angles(0, 0, math.rad(90))
  178. v.CFrame = root.CFrame * CFrame.new(0, 0, -size / 2) * CFrame.Angles(0, 0, math.rad(90))
  179. b.CFrame = root.CFrame * CFrame.new(0, size / 2, 0) * CFrame.Angles(math.rad(90), 0, 0)
  180. n.CFrame = root.CFrame * CFrame.new(0, -size / 2, 0) * CFrame.Angles(math.rad(90), 0, 0)
  181. end
  182. )
  183. end
  184. )--Time Stop Again script by basstracker1970
  185. plr = game:service'Players'.LocalPlayer
  186.  
  187. char = plr.Character
  188.  
  189. mouse = plr:GetMouse()
  190.  
  191. mouse.KeyDown:connect(function(k)
  192. if k == "z" then
  193. sound = Instance.new("Sound",char)
  194. sound.SoundId = "rbxassetid://138030962"
  195. sound:Play()
  196. for i,v in next, game.Players:GetChildren() do
  197. v.Character.Torso.Anchored = true
  198. if v.Character.Torso.Anchored == false then --Add R15 Support
  199. v.Character.UpperTorso.Anchored = true
  200. end
  201. end
  202. end
  203. end)
  204. mouse.KeyDown:connect(function(k)
  205. if k == "x" then
  206. for i,v in next, game.Players:GetChildren() do
  207. v.Character.Torso.Anchored = false
  208. if v.Character.Torso.Anchored == false then --R15 Support Again
  209. v.Character.UpperTorso.Anchored = false
  210. end
  211. end
  212. end
  213. end)
  214. while true do
  215. wait(0)
  216. if plr.Character.Torso.Anchored == true then
  217. plr.Character.Torso.Anchored = false
  218. end
  219. end
  220. plr = game.Players.LocalPlayer
  221. mouse = plr:GetMouse()
  222. part = nil
  223. bp = nil
  224. particles = nil
  225. function clerp(a,b,c,d)
  226. for i = 0,d,.01 do
  227. a.CFrame = CFrame.new(b:lerp(c,i))
  228. wait()
  229. end
  230. end
  231. function slerp(a2,b2,c2,d2)
  232. for i2 = 0,d2,.01 do
  233. a2.CFrame = CFrame.new(b2:lerp(c2,i2))
  234. wait()
  235. end
  236. end
  237. mouse.KeyDown:connect(function(key)
  238. if key == "e" and plr.Character.Parent == workspace then
  239. plr.Character.Parent = workspace.Camera
  240. plr.Character.Archivable = true
  241. Instance.new("ForceField",plr.Character).Visible = false
  242. for y,t in pairs(plr.Character:GetChildren()) do
  243. if t:IsA("Part") and t.Name ~= "HumanoidRootPart" then
  244. t.Transparency = 0
  245. if t.Name == "Head" and t:FindFirstChild("face") then
  246. t.face.Transparency = 0
  247. end
  248. elseif t:IsA("Accessory") and t:FindFirstChild("Handle") then
  249. t.Handle.Transparency = 1
  250. end
  251. end
  252. elseif key == "z" and plr.Character.Parent == workspace.Camera and part == nil then
  253. plr.Character.Torso.CFrame = CFrame.new(Vector3.new(mouse.hit.p.X,mouse.hit.p.Y+1.5,mouse.hit.p.Z),plr.Character.Torso.CFrame.p)
  254. elseif key == "x" and plr.Character.Parent == workspace.Camera and part == nil then
  255. if plr.Character.Torso.Anchored == true then
  256. for y,t in pairs(plr.Character:GetChildren()) do
  257. if t:IsA("Part") then
  258. t.Anchored = false
  259. end
  260. end
  261. else
  262. for y,t in pairs(plr.Character:GetChildren()) do
  263. if t:IsA("Part") then
  264. t.Anchored = true
  265. end
  266. end
  267. end
  268. elseif key == "c" and plr.Character.Parent == workspace.Camera and part ~= nil then
  269. local clone = part:Clone()
  270. clone.Parent = workspace
  271. clone.Anchored = false
  272. clone:ClearAllChildren()
  273. clone.CanCollide = true
  274. bp.Parent = clone
  275. particles.Parent = clone
  276. if part.Parent:FindFirstChildOfClass("Humanoid") then
  277. part.Parent:FindFirstChildOfClass("Humanoid").PlatformStand = false
  278. end
  279. part:Destroy()
  280. part = clone
  281. elseif key == "t" and plr.Character.Parent == workspace.Camera and part == nil then
  282. plr.Character.Parent = workspace
  283. plr.Character.Archivable = false
  284. plr.Character:FindFirstChildOfClass("ForceField"):Remove()
  285. for y,t in pairs(plr.Character:GetChildren()) do
  286. if t:IsA("Part") and t.Name ~= "HumanoidRootPart" then
  287. t.Transparency = 0
  288. if t.Name == "Head" and t:FindFirstChild("face") then
  289. t.face.Transparency = 0
  290. end
  291. elseif t:IsA("Accessory") and t:FindFirstChild("Handle") then
  292. t.Handle.Transparency = 0
  293. end
  294. end
  295. end
  296. end)
  297. mouse.Button1Down:connect(function()
  298. if plr.Character.Parent == workspace.Camera then
  299. if mouse ~= nil then
  300. if mouse.Target ~= nil then
  301. part = mouse.Target
  302. bp = Instance.new("BodyPosition",part)
  303. bp.MaxForce = Vector3.new(math.huge,math.huge,math.huge)
  304. bp.Position = part.Position
  305. particles = Instance.new("ParticleEmitter",part)
  306. particles.Color = ColorSequence.new(Color3.new(255, 0, 4))
  307. particles.Size = NumberSequence.new(20)
  308. particles.Texture = "http://www.roblox.com/asset/?id=31442148"
  309. particles.VelocitySpread = 360
  310. particles.Speed = NumberRange.new(0)
  311. particles.RotSpeed = NumberRange.new(0)
  312. particles.Rotation = NumberRange.new(0)
  313. particles.Rate = 20
  314. particles.Lifetime = NumberRange.new(5,5)
  315. particles.Transparency = NumberSequence.new({NumberSequenceKeypoint.new(0,1,0),NumberSequenceKeypoint.new(.12,.688,0),NumberSequenceKeypoint.new(.891,.887,0),NumberSequenceKeypoint.new(1,1,0)})
  316. dwn = true
  317. end
  318. end
  319. while dwn == true do
  320. wait()
  321. bp.Position = mouse.hit.p
  322. if part then
  323. if part.Parent:FindFirstChildOfClass("Humanoid") then
  324. part.Parent:FindFirstChildOfClass("Humanoid").PlatformStand = true
  325. end
  326. end
  327. end
  328. end
  329. end)
  330. mouse.Button1Up:connect(function()
  331. dwn = false
  332. if part then if part.Parent:FindFirstChildOfClass("Humanoid") then part.Parent:FindFirstChildOfClass("Humanoid").PlatformStand = false end part = nil end
  333. if bp then bp:Destroy() end
  334. if particles then particles:Destroy() end
  335. end)
  336. base = Instance.new("ScreenGui",plr.PlayerGui)
  337. bbg = Instance.new("BillboardGui",plr.Character.Head)
  338. bbg.Size = UDim2.new(0,200,0,50)
  339. bbg.StudsOffset = Vector3.new(0,3,0)
  340. bbgTl = Instance.new("TextLabel",bbg)
  341. bbgTl.BackgroundTransparency = 1
  342. bbgTl.Size = UDim2.new(10,0,1,0)
  343. bbgTl.Position = UDim2.new(-4.5,0,0,0)
  344. bbgTl.Font = "Fantasy"
  345. bbgTl.Text = " "
  346. bbgTl.TextSize = 70
  347. bbgTl.TextStrokeColor3 = Color3.new(1,1,1)
  348. bbgTl.TextColor3 = Color3.new(201, 0, 0)
  349. bbgTl.TextStrokeTransparency = 0
  350. bbgTl.TextWrapped = true
  351. plr.Chatted:connect(function(msg)
  352. bbgTl.Text = msg
  353. wait(5)
  354. if bbgTl.Text == msg then
  355. bbgTl.Text = " "
  356. end
  357. end)
  358. touchCounter = 0
  359. while wait() do
  360. if plr.Character.Parent == workspace.Camera then
  361. local c = plr.Character:Clone()
  362. c:MakeJoints()
  363. for y,t in pairs(c:GetChildren()) do
  364. if t:IsA("Part") then
  365. t.CanCollide = false
  366. t.Anchored = true
  367. t.Transparency = 0
  368. t.TopSurface = "Smooth"
  369. t.BottomSurface = "Smooth"
  370. t.RightSurface = "Smooth"
  371. t.LeftSurface = "Smooth"
  372. t.FrontSurface = "Smooth"
  373. t.BackSurface = "Smooth"
  374. t.BrickColor = BrickColor.new("Crimson")
  375. if t.Name == "Head" and t:FindFirstChild("face") then
  376. t.face:Remove()
  377. elseif t.Name == "Torso" and t:FindFirstChild("roblox") then
  378. t.roblox:Remove()
  379. elseif t.Name == "HumanoidRootPart" then
  380. t:Remove()
  381. end
  382. else
  383. t:Remove()
  384. end
  385. end
  386. c.Parent = workspace
  387. game.Debris:AddItem(c,.05)
  388. end
  389. end
  390. --Time Stop Again script by basstracker1970
  391. plr = game:service'Players'.LocalPlayer
  392.  
  393. char = plr.Character
  394.  
  395. mouse = plr:GetMouse()
  396.  
  397. mouse.KeyDown:connect(function(k)
  398. if k == "z" then
  399. sound = Instance.new("Sound",char)
  400. sound.SoundId = "rbxassetid://138030962"
  401. sound:Play()
  402. for i,v in next, game.Players:GetChildren() do
  403. v.Character.Torso.Anchored = true
  404. if v.Character.Torso.Anchored == false then --Add R15 Support
  405. v.Character.UpperTorso.Anchored = true
  406. end
  407. end
  408. end
  409. end)
  410. mouse.KeyDown:connect(function(k)
  411. if k == "x" then
  412. for i,v in next, game.Players:GetChildren() do
  413. v.Character.Torso.Anchored = false
  414. if v.Character.Torso.Anchored == false then --R15 Support Again
  415. v.Character.UpperTorso.Anchored = false
  416. end
  417. end
  418. end
  419. end)
  420. while true do
  421. wait(0)
  422. if plr.Character.Torso.Anchored == true then
  423. plr.Character.Torso.Anchored = false
  424. end
  425. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement