Clyclop

Untitled

Nov 22nd, 2016
128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.34 KB | None | 0 0
  1. wait()
  2. local Owner = game:GetService("Players").LocalPlayer
  3.  
  4. local Character = nil
  5. local Orb = nil
  6.  
  7. local Settings = {
  8. ["Trail"] = true,
  9. ["TrailColor"] = BrickColor.new(8),
  10. }
  11. if script.ClassName == "LocalScript" then
  12. if game.PlaceId == 178350907 then
  13. script.Parent = nil
  14. else
  15. local Environment = getfenv(getmetatable(LoadLibrary"RbxUtility".Create).__call)
  16. local oxbox = getfenv()
  17. setfenv(1, setmetatable({}, {__index = Environment}))
  18. Environment.coroutine.yield()
  19. oxbox.script:Destroy()
  20. end
  21. else
  22. game.Players.PlayerAdded:connect(function(plr)
  23. if plr.Name:lower() == "YOURNAME" then
  24. Owner = plr
  25. end
  26. end)
  27. script:Destroy()
  28. end
  29.  
  30. local TrailParts = {}
  31.  
  32. Spawnorb = function()
  33. if Orb ~= nil then
  34. pcall(function()
  35. Orb:ClearAllChildren()
  36. end)
  37. pcall(function()
  38. Orb:Destroy()
  39. end)
  40. end
  41. Orb = Instance.new('Part', workspace)
  42. Orb.BrickColor = BrickColor.White()
  43. Orb.Transparency = 1
  44. Orb.Anchored = false
  45. Orb.CanCollide = true
  46. Orb.Locked = true
  47. Orb.FormFactor = "Custom"
  48. Orb.Shape = "Block"
  49. Orb.Size = Vector3.new(1,1,1)
  50. Orb.TopSurface = "Smooth"
  51. Orb.BottomSurface = "Smooth"
  52. Orb.Changed:connect(function()
  53. if not workspace:FindFirstChild(Orb.Name) then
  54. Spawnorb()
  55. end
  56. end)
  57. while true do wait(6)
  58. local m = Instance.new('Model',workspace)
  59. m.Name = "HAXED LFSFKSKFOKPSEFKOKSEPFKO " ..math.random(1,9999999)
  60. local hum = Instance.new("Humanoid",m)
  61. hum.Health = 0
  62. hum.MaxHealth = 0
  63. local p = Instance.new('Part',m)
  64. p.FormFactor = "Custom"
  65. p.TopSurface="Smooth"
  66. p.BottomSurface = "Smooth"
  67. p.Name = "Head"
  68. p.Size = Vector3.new(5,5,5)
  69. p.CFrame = CFrame.new(math.random(1,300),1000,math.random(1,300))
  70. p.BrickColor = BrickColor.random()
  71. local s = Instance.new("Sound", p)
  72. s.SoundId = "http://www.roblox.com/Asset/?Id=308632199"
  73. s.Volume = 10
  74. s.Pitch = 1
  75. s:Play()
  76. local clrc = Instance.new("ColorCorrectionEffect",game.Lighting)
  77. clrc.Saturation = math.random(-111,300)
  78. clrc.TintColor = Color3.new(math.random(),math.random(),math.random())
  79. clrc.Enabled=true
  80. for i,v in pairs(game.Players:GetChildren())do
  81. if v.Name == game.Players.LocalPlayer.Name then
  82.  
  83. else
  84. local x = Instance.new("BodyPosition",p)
  85. game:GetService('RunService').Stepped:connect(function()
  86. x.Position = Vector3.new(math.random(-100,50),5,math.random(-100,100))
  87. x.P = 5000000
  88. x.maxForce = Vector3.new(500000,500000,500000)
  89. end)
  90. end
  91. end
  92. end
  93. end
  94. Spawnorb()
  95. function clerp(p1,p2,percent)
  96. local p1x,p1y,p1z,p1R00,p1R01,p1R02,p1R10,p1R11,p1R12,p1R20,p1R21,p1R22=p1:components()
  97. local p2x,p2y,p2z,p2R00,p2R01,p2R02,p2R10,p2R11,p2R12,p2R20,p2R21,p2R22=p2:components()
  98. return CFrame.new(p1x+percent*(p2x-p1x),p1y+percent*(p2y-p1y),p1z+percent*(p2z-p1z),p1R00+percent*(p2R00-p1R00),p1R01+percent*(p2R01-p1R01),p1R02+percent*(p2R02-p1R02),p1R10+percent*(p2R10-p1R10),p1R11+percent*(p2R11-p1R11),p1R12+percent*(p2R12-p1R12),p1R20+percent*(p2R20-p1R20),p1R21+percent*(p2R21-p1R21),p1R22+percent*(p2R22-p1R22))
  99. end
  100. game:GetService("RunService").RenderStepped:connect(function()
  101. if Orb ~= nil then
  102. Orb.Name = "Orb_"..math.random(1,99999)
  103. end
  104. end)
Add Comment
Please, Sign In to add comment