Advertisement
EVANEMC

Untitled

Sep 5th, 2016
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.70 KB | None | 0 0
  1. --Created with ttyyuu12345's compiler
  2. --ttyyuu12345 is not responsible for damages caused to your game
  3. --This plugin does not remove things
  4. --ttyyuu12345 cannot be held resonsible for manual deletion for the purpose of testing
  5. --Keep in mind, any items that cause errors in compilation will be skipped and documented within the last line of the disclaimer comments
  6. --Thank you for using my plugin and enjoy :)
  7. --It is free to use
  8. --If you use this plugin to create your own, please give me credit
  9. --Z_V edited my plugin to look like his own and published it without giving me credit, and that makes me very angry
  10. --Errors:
  11. Create = function(itemClass,tabl)
  12. local item = Instance.new(itemClass)
  13. for i,v in pairs(tabl) do
  14. local a,b = ypcall(function() return item[i] end)
  15. if a then
  16. item[i] = tabl[i]
  17. end
  18. end
  19. return item
  20. end
  21.  
  22. function runDummyScript(f,scri)
  23. local oldenv = getfenv(f)
  24. local newenv = setmetatable({}, {
  25. __index = function(_, k)
  26. if k:lower() == 'script' then
  27. return scri
  28. else
  29. return oldenv[k]
  30. end
  31. end
  32. })
  33. setfenv(f, newenv)
  34. ypcall(function() f() end)
  35. end
  36. cors = {}
  37. mas = Instance.new("Model",game:GetService("Lighting"))
  38. mas.Name = "CompiledModel"
  39. o1 = Create("ScreenGui",{
  40. ["Name"] = "tbr clr",
  41. ["Parent"] = mas,
  42. })
  43. o2 = Create("TextLabel",{
  44. ["Name"] = "clr",
  45. ["Parent"] = o1,
  46. ["Position"] = UDim2.new(0,-1,0,-51),
  47. ["Size"] = UDim2.new(0,15000,0,50),
  48. ["Text"] = "Rainbow By EvanEMC",
  49. ["BackgroundColor3"] = Color3.new(1, 1, 1),
  50. ["BorderColor3"] = Color3.new(0.588235, 0.588235, 0.588235),
  51. ["BorderSizePixel"] = 0,
  52. ["Font"] = Enum.Font.SourceSans,
  53. ["FontSize"] = Enum.FontSize.Size14,
  54. ["TextScaled"] = true,
  55. ["TextStrokeTransparency"] = 0,
  56. ["TextWrapped"] = true,
  57. })
  58. o3 = Create("Script",{
  59. ["Parent"] = o2,
  60. })
  61. table.insert(cors,coroutine.create(function()
  62. wait()
  63. runDummyScript(function()
  64. local change1 = script.Parent
  65.  
  66. while true do
  67.     for i = 0,255,1 do
  68.     g = i/255
  69.     change1.BackgroundColor3 = Color3.new(1,0,g)
  70.     wait(.02)
  71.     end
  72.     for i = 255,0,-1 do
  73.         g = i/255
  74.     change1.BackgroundColor3 = Color3.new(g,0,1)
  75.     wait(.02)
  76.     end
  77.     for i = 0,255,1 do
  78.         g = i/255
  79.     change1.BackgroundColor3 = Color3.new(0,g,1)
  80.     wait(.02)
  81.     end
  82.  
  83.     for i = 255,0,-1 do
  84.         g = i/255
  85.     change1.BackgroundColor3 = Color3.new(0,1,g)
  86.     wait(.02)
  87.     end
  88.     for i = 0,255,1 do
  89.         g = i/255
  90.     change1.BackgroundColor3 = Color3.new(g,1,0)
  91.     wait(.02)
  92.     end
  93.     for i = 255,0,-1 do
  94.         g = i/255
  95.     change1.BackgroundColor3 = Color3.new(1,g,0)
  96.     wait(.02)
  97.     end
  98. end
  99.  
  100. end,o3)
  101. end))
  102. mas.Parent = workspace
  103. mas:MakeJoints()
  104. local mas1 = mas:GetChildren()
  105. for i=1,#mas1 do
  106.     mas1[i].Parent = workspace
  107.     ypcall(function() mas1[i]:MakeJoints() end)
  108. end
  109. mas:Destroy()
  110. for i=1,#cors do
  111. coroutine.resume(cors[i])
  112. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement