Advertisement
Guest User

Untitled

a guest
May 27th, 2015
287
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.23 KB | None | 0 0
  1. Stat Change
  2. ----------------------------------------------------------------------------
  3. game.Players.LocalPlayer.leaderstats.STAT.Value = VALUE
  4. ----------------------------------------------------------------------------
  5.  
  6. Decal Spam
  7. ----------------------------------------------------------------------------
  8. --[[ made by PewDiePie]]--
  9.  
  10. texture = "http://www.roblox.com/asset/?id=179415572"
  11.  
  12. local A = game.Workspace:GetChildren()
  13. local B = game.Workspace:GetChildren()
  14. local C = game.Workspace:GetChildren()
  15. local D = game.Workspace:GetChildren()
  16. local E = game.Workspace:GetChildren()
  17. local F = game.Workspace:GetChildren()
  18. for i,v in pairs(A) do
  19. if v:IsA("Part") then
  20. local d = Instance.new("Decal",v)
  21. v.Decal.Face = "Top"
  22. v.Decal.Texture = texture
  23. v.Anchored = true
  24. end
  25. end
  26.  
  27. for i,v in pairs(B) do
  28. if v:IsA("Part") then
  29. local s = Instance.new("Decal",v)
  30. s.Face = "Front"
  31. s.Texture = texture
  32. end
  33. end
  34.  
  35. for i,v in pairs(C) do
  36. if v:IsA("Part") then
  37. local h = Instance.new("Decal",v)
  38. h.Face = "Back"
  39. h.Texture = texture
  40. end
  41. end
  42.  
  43. for i,v in pairs(D) do
  44. if v:IsA("Part") then
  45. local j = Instance.new("Decal",v)
  46. j.Face = "Left"
  47. j.Texture = texture
  48. end
  49. end
  50.  
  51. for i,v in pairs(E) do
  52. if v:IsA("Part") then
  53. local k = Instance.new("Decal",v)
  54. k.Face = "Right"
  55. k.Texture = texture
  56. end
  57. end
  58.  
  59. for i,v in pairs(F) do
  60. if v:IsA("Part") then
  61. local l = Instance.new("Decal",v)
  62. l.Face = "Bottom"
  63. l.Texture = texture
  64. end
  65. end
  66.  
  67. --[[ made by PewDiePie ]]--
  68. ---------------------------------------------------------
  69.  
  70. Skybox
  71. ---------------------------------------------------------
  72. txt = "http://www.roblox.com/asset?id=158108087"
  73. local s = Instance.new("Sky",game.Lighting)
  74. s.SkyboxBk = txt
  75. s.SkyboxFt = txt
  76. s.SkyboxDn = txt
  77. s.SkyboxLf = txt
  78. s.SkyboxRt = txt
  79. s.SkyboxUp = txt
  80. --------------------------------------------------------
  81.  
  82. Troll
  83. --------------------------------------------------------
  84. s = Instance.new("Sky")
  85. s.Name = "trolld"
  86. s.SkyboxBk = "http://www.roblox.com/asset/?id=62866150"
  87. s.SkyboxDn = "http://www.roblox.com/asset/?id=62866150"
  88. s.SkyboxFt = "http://www.roblox.com/asset/?id=62866150"
  89. s.SkyboxLf = "http://www.roblox.com/asset/?id=62866150"
  90. s.SkyboxRt = "http://www.roblox.com/asset/?id=62866150"
  91. s.SkyboxUp = "http://www.roblox.com/asset/?id=62866150"
  92. s.Parent = game.Lighting
  93.  
  94. while true do
  95. wait(0.225555)
  96. t = game.Teams:GetChildren()
  97. for i = 1, #t do
  98. if t[i] == true then
  99. t[i].Name = math.random()
  100. end
  101. end
  102. p = game.Players:GetChildren()
  103. for i = 1, #p do
  104. o = p[i].Character:GetChildren()
  105. for i = 1, #o do
  106. if o[i].ClassName == "Part" then
  107. q = Instance.new("SpecialMesh", o[i])
  108. q.MeshType = math.random(1,11)
  109. end
  110. end
  111. end
  112. w = game.Workspace:GetChildren()
  113. for i = 1, #w do
  114. if w[i].ClassName == "Part" then
  115. m = Instance.new("SpecialMesh", w[i])
  116. m.MeshType = math.random(1,11)
  117. elseif w[i].ClassName == "Model" then
  118. mo = w[i]:GetChildren()
  119. for i = 1, #mo do
  120. if mo[i].ClassName == "Part" then
  121. m = Instance.new("SpecialMesh", w[i])
  122. m.MeshType = math.random(1,11)
  123. end
  124. end
  125. end
  126. end
  127. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement