Advertisement
BabyGoatz

JOHN CENA

Sep 24th, 2015
196
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.92 KB | None | 0 0
  1. cena =
  2. function(instance)
  3. for i,v in pairs(instance:GetChildren()) do
  4. if v.ClassName == "Sound" then
  5. v:Destroy()
  6. end
  7. if v:IsA("BasePart") then
  8. v:ClearAllChildren()
  9. local function decal(face)
  10. local d = Instance.new("Decal", v)
  11. d.Texture = "rbxassetid://121913592"
  12. d.Face = face
  13. end
  14. decal("Back")
  15. decal("Bottom")
  16. decal("Left")
  17. decal("Right")
  18. decal("Front")
  19. decal("Top")
  20. end
  21. cena(v)
  22. end
  23. end
  24. cena(workspace)
  25. for i, v in pairs(game.Lighting:GetChildren()) do
  26. if v:IsA("Sky") then
  27. v:Destroy()
  28. end
  29. end
  30. local sk = Instance.new("Sky", game.Lighting)
  31. sk.SkyboxBk = "rbxassetid://121913592"
  32. sk.SkyboxDn = "rbxassetid://121913592"
  33. sk.SkyboxFt = "rbxassetid://121913592"
  34. sk.SkyboxLf = "rbxassetid://121913592"
  35. sk.SkyboxRt = "rbxassetid://121913592"
  36. sk.SkyboxUp = "rbxassetid://121913592"
  37. local s = Instance.new("Sound", game.Workspace)
  38. s.SoundId = "rbxassetid://289936337"
  39. s.Looped = true
  40. s.PlayOnRemove = true
  41. s:Play()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement