Advertisement
Aaronremmers14

giantdick 2

May 21st, 2016
328
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.23 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, however I do accept donations
  8. --Errors:
  9. Create = function(itemClass,tabl)
  10. local item = Instance.new(itemClass)
  11. for i,v in pairs(tabl) do
  12. local a,b = ypcall(function() return item[i] end)
  13. if a then
  14. item[i] = tabl[i]
  15. end
  16. end
  17. return item
  18. end
  19. function runDummyScript(f,scri)
  20. local oldenv = getfenv(f)
  21. local newenv = setmetatable({}, {
  22. __index = function(_, k)
  23. if k:lower() == 'script' then
  24. return scri
  25. else
  26. return oldenv[k]
  27. end
  28. end
  29. })
  30. setfenv(f, newenv)
  31. ypcall(function() f() end)
  32. end
  33. cors = {}
  34. mas = Instance.new("Model",game:GetService("Lighting"))
  35. mas.Name = "CompiledModel"
  36. o1 = Create("Model",{
  37. ["Parent"] = mas,
  38. })
  39. o2 = Create("Part",{
  40. ["Parent"] = o1,
  41. ["BrickColor"] = BrickColor.new("Pastel yellow"),
  42. ["Position"] = Vector3.new(17.4599991, 38.281723, 75.0905228),
  43. ["Rotation"] = Vector3.new(-180, 0, 90),
  44. ["Anchored"] = true,
  45. ["CFrame"] = CFrame.new(17.4599991, 38.281723, 75.0905228, 0, -1, 0, -1, 0, 0, 0, 0, -1),
  46. ["Shape"] = Enum.PartType.Cylinder,
  47. ["Size"] = Vector3.new(64.6399994, 11.0199995, 11.9299994),
  48. ["BottomSurface"] = Enum.SurfaceType.Smooth,
  49. ["TopSurface"] = Enum.SurfaceType.Smooth,
  50. ["Color"] = Color3.new(1, 1, 0.8),
  51. })
  52. o3 = Create("Part",{
  53. ["Parent"] = o1,
  54. ["BrickColor"] = BrickColor.new("Pink"),
  55. ["Position"] = Vector3.new(17.1599998, 69.2067413, 75.1200027),
  56. ["Anchored"] = true,
  57. ["CFrame"] = CFrame.new(17.1599998, 69.2067413, 75.1200027, 1, 0, 0, 0, 1, 0, 0, 0, 1),
  58. ["Shape"] = Enum.PartType.Ball,
  59. ["Size"] = Vector3.new(12.0999994, 12.0999994, 12.0999994),
  60. ["BottomSurface"] = Enum.SurfaceType.Smooth,
  61. ["TopSurface"] = Enum.SurfaceType.Smooth,
  62. ["Color"] = Color3.new(1, 0.4, 0.8),
  63. })
  64. o4 = Create("Part",{
  65. ["Parent"] = o1,
  66. ["BrickColor"] = BrickColor.new("Pastel yellow"),
  67. ["Position"] = Vector3.new(17.8000011, 6.09000111, 84.9899902),
  68. ["Anchored"] = true,
  69. ["CFrame"] = CFrame.new(17.8000011, 6.09000111, 84.9899902, 1, 0, 0, 0, 1, 0, 0, 0, 1),
  70. ["Shape"] = Enum.PartType.Ball,
  71. ["Size"] = Vector3.new(28.7999992, 28.7999992, 28.7999992),
  72. ["BottomSurface"] = Enum.SurfaceType.Smooth,
  73. ["TopSurface"] = Enum.SurfaceType.Smooth,
  74. ["Color"] = Color3.new(1, 1, 0.8),
  75. })
  76. o5 = Create("Part",{
  77. ["Parent"] = o1,
  78. ["BrickColor"] = BrickColor.new("Pastel yellow"),
  79. ["Position"] = Vector3.new(17.8000011, 6.09000111, 67.5),
  80. ["Anchored"] = true,
  81. ["CFrame"] = CFrame.new(17.8000011, 6.09000111, 67.5, 1, 0, 0, 0, 1, 0, 0, 0, 1),
  82. ["Shape"] = Enum.PartType.Ball,
  83. ["Size"] = Vector3.new(28.7999992, 28.7999992, 28.7999992),
  84. ["BottomSurface"] = Enum.SurfaceType.Smooth,
  85. ["TopSurface"] = Enum.SurfaceType.Smooth,
  86. ["Color"] = Color3.new(1, 1, 0.8),
  87. })
  88. mas.Parent = workspace
  89. mas:MakeJoints()
  90. local mas1 = mas:GetChildren()
  91. for i=1,#mas1 do
  92. mas1[i].Parent = script
  93. ypcall(function() mas1[i]:MakeJoints() end)
  94. end
  95. mas:Destroy()
  96. for i=1,#cors do
  97. coroutine.resume(cors[i])
  98. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement