Advertisement
Script_Roblox_Paste

dsadsadasdas

Jun 23rd, 2017
212
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.38 KB | None | 0 0
  1. local lol = Instance.new("Model",game.Workspace)
  2. lol.Name = "FREE ROBUX"
  3. local lol2 = Instance.new("Part",lol)
  4. lol2.Name = "Head"
  5. lol2.BrickColor = BrickColor.new("Camo")
  6. lol2.Position = Vector3.new(-44.4, 2.1, -9.6)
  7. lol2.Size = Vector3.new(5, 1.2, 5)
  8. local lol3 = Instance.new("CylinderMesh",lol2)
  9. lol3.Scale = Vector3.new(0.75, 1, 0.75)
  10. local lol4 = Instance.new("Part",lol)
  11. lol4.Position = Vector3.new(-44.4, 2.1, -9.6)
  12. lol4.Size = Vector3.new(-44.4, 0.9, -9.6)
  13. local lol5 = Instance.new("CylinderMesh",lol2)
  14. lol5.Scale = Vector3.new(1, 1, 1)
  15. script.Parent = lol
  16. local lol6 = Instance.new("Humanoid",lol)
  17. lol6.Health = 0
  18. lol6.MaxHeath = 0
  19. local workspace = game.Workspace
  20.  
  21. function check(object)
  22.  
  23. if object.className == "Model" and object:findFirstChild("Humanoid") == nil then
  24. for i, v in ipairs(object:getChildren()) do
  25. check(v)
  26. wait()
  27. end
  28. end
  29. if object:IsA("Part") then
  30. local soundclone = s:Clone()
  31. soundclone.SoundId = sounds[math.random(1, 2)]
  32. game:GetService("Debris"):AddItem(object, 300)
  33. soundclone.Pitch = math.random(9, 12)/10
  34. soundclone.Parent = object
  35. delay(0.1, function() soundclone:Play() end)
  36. delay(0, function()
  37. for i = 1, 15*1.5 do
  38. local e = Instance.new("Explosion")
  39. e.Parent = workspace
  40. e.BlastPressure = 1e4*object:getMass()
  41. e.Position = object.Position
  42. object.Anchored = false
  43. object:BreakJoints()
  44. wait(1.5)
  45. end
  46. end)
  47. end
  48. end
  49.  
  50. local deb = true
  51. script.Parent.Touched:connect(function(hit)
  52. if not deb then return end
  53. deb = false
  54. --ONOES:Play()
  55. script.Parent.Parent.Name = ""
  56. local c = script.Parent.CFrame
  57. for i = 0, 1, 0.05 do
  58. script.Parent.CFrame = c - Vector3.new(0, i, 0)
  59. wait()
  60. end
  61. local m = Instance.new("Message")
  62. m.Text = "Look at your Robux"
  63. m.Parent = workspace
  64. local color = game.Lighting.Ambient
  65. delay(0, function()
  66. while true do
  67. game.Lighting.Brightness = 1
  68. game.Lighting.Ambient = Color3.new(0, 100, 0)
  69. game.Lighting.ColorShift_Top = Color3.new(0, 1, 0)
  70. game.Lighting.ColorShift_Bottom = Color3.new(0, 1, 0)
  71. wait(1)
  72. game.Lighting.Brightness = 1
  73. game.Lighting.Ambient = color
  74. game.Lighting.ColorShift_Top = Color3.new(0, 0, 0)
  75. game.Lighting.ColorShift_Bottom = Color3.new(0, 0, 0)
  76. wait(1)
  77. end
  78. end)
  79. wait(5)
  80. m:remove()
  81. script.Parent.Parent.Name = ""
  82. for i, v in ipairs(workspace:getChildren()) do
  83. check(v)
  84. wait()
  85. end
  86. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement