Advertisement
Guest User

Hitlaar

a guest
Dec 7th, 2016
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.15 KB | None | 0 0
  1. sky = Instance.new("Sky")
  2. sky.Parent = game.Lighting
  3. sky.SkyboxBk = "http://www.roblox.com/asset/?id=560738136"
  4. sky.SkyboxDn = "http://www.roblox.com/asset/?id=560738136"
  5. sky.SkyboxFt = "http://www.roblox.com/asset/?id=560738136"
  6. sky.SkyboxLf = "http://www.roblox.com/asset/?id=560738136"
  7. sky.SkyboxRt = "http://www.roblox.com/asset/?id=560738136"
  8. sky.SkyboxUp = "http://www.roblox.com/asset/?id=560738136"
  9.  
  10. sound = Instance.new("Sound")
  11. sound.SoundId = "http://www.roblox.com/asset?id=458157165"
  12. sound.Volume = 1
  13. sound.Looped = true
  14. sound.Name = "MusicLoop"
  15. sound.Parent = game.Workspace
  16. sound:Play()
  17. script:Remove()
  18.  
  19. --[[ made by ManMinded ]]--
  20.  
  21. texture = "http://www.roblox.com/asset/?id=560738136" -- put id there, then set last digit one number back
  22.  
  23. local A = game.Workspace:GetChildren()
  24. local B = game.Workspace:GetChildren()
  25. local C = game.Workspace:GetChildren()
  26. local D = game.Workspace:GetChildren()
  27. local E = game.Workspace:GetChildren()
  28. local F = game.Workspace:GetChildren()
  29. for i,v in pairs(A) do
  30.     if v:IsA("Part") then
  31.     local d =   Instance.new("Decal",v)
  32.         v.Decal.Face = "Top"
  33.         v.Decal.Texture = texture
  34.         v.Anchored = true      
  35.     end
  36. end
  37.  
  38. for i,v in pairs(B) do
  39.     if v:IsA("Part") then
  40.         local s = Instance.new("Decal",v)
  41.         s.Face = "Front"
  42.         s.Texture = texture
  43.     end
  44. end
  45.  
  46. for i,v in pairs(C) do
  47.     if v:IsA("Part") then
  48.         local h = Instance.new("Decal",v)
  49.         h.Face = "Back"
  50.         h.Texture = texture
  51.     end
  52. end
  53.  
  54. for i,v in pairs(D) do
  55.     if v:IsA("Part") then
  56.         local j = Instance.new("Decal",v)
  57.         j.Face = "Left"
  58.         j.Texture = texture
  59.     end
  60. end
  61.  
  62. for i,v in pairs(E) do
  63.     if v:IsA("Part") then
  64.         local k = Instance.new("Decal",v)
  65.         k.Face = "Right"
  66.         k.Texture = texture
  67.     end
  68. end
  69.  
  70. for i,v in pairs(F) do
  71.     if v:IsA("Part") then
  72.         local l = Instance.new("Decal",v)
  73.         l.Face = "Bottom"
  74.         l.Texture = texture
  75.     end
  76. end
  77.  
  78. while true do
  79. local p = game.Players:GetChildren()
  80. for _,v in pairs(p) do
  81. if v.Character.Torso:FindFirstChild("ParticleEmitter") == nil then
  82. fe = Instance.new("ParticleEmitter",v.Character.Torso)
  83. fe.Texture = "http://www.roblox.com/asset/?id=560738136"
  84. fe.VelocitySpread = 99
  85. end
  86. end
  87. wait()
  88. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement