Advertisement
MindOfPlayer

Cosmetic

Apr 26th, 2020
64,654
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.04 KB | None | 0 0
  1. --by Soul#4086
  2.  
  3. --Objects
  4. local ScreenGui = Instance.new("ScreenGui")
  5. local main = Instance.new("Frame")
  6. local title = Instance.new("TextLabel")
  7. local Headless = Instance.new("TextButton")
  8. local OneLeg = Instance.new("TextButton")
  9. local close = Instance.new("TextButton")
  10. local openmain = Instance.new("Frame")
  11. local open = Instance.new("TextButton")
  12.  
  13. --Properties:
  14. ScreenGui.Parent = game.CoreGui
  15.  
  16. main.Name = "main"
  17. main.Parent = ScreenGui
  18. main.BackgroundColor3 = Color3.new(0, 0, 0)
  19. main.Position = UDim2.new(0.0203577988, 0, 0.641277611, 0)
  20. main.Size = UDim2.new(0, 332, 0, 211)
  21. main.Visible = false
  22. main.Active = true
  23. main.Draggable = true
  24.  
  25. title.Name = "title"
  26. title.Parent = main
  27. title.BackgroundColor3 = Color3.new(1, 0, 1)
  28. title.Size = UDim2.new(0, 332, 0, 31)
  29. title.Font = Enum.Font.GothamBold
  30. title.Text = "Soul#4086 Cosmetics GUI"
  31. title.TextColor3 = Color3.new(0, 0, 0)
  32. title.TextSize = 17
  33.  
  34. Headless.Name = "Headless"
  35. Headless.Parent = main
  36. Headless.BackgroundColor3 = Color3.new(0.333333, 1, 0)
  37. Headless.Position = UDim2.new(0.036144577, 0, 0.379146934, 0)
  38. Headless.Size = UDim2.new(0, 110, 0, 50)
  39. Headless.Font = Enum.Font.GothamBold
  40. Headless.Text = "Headless"
  41. Headless.TextColor3 = Color3.new(0, 0, 0)
  42. Headless.TextScaled = true
  43. Headless.TextSize = 10
  44. Headless.TextWrapped = true
  45. Headless.MouseButton1Down:connect(function()
  46. game.Players.LocalPlayer.Character.Head.Transparency = 1
  47. for i,v in pairs(game.Players.LocalPlayer.Character.Head:GetChildren()) do
  48. if (v:IsA("Decal")) then
  49. v:Destroy()
  50. end
  51. end
  52. end)
  53.  
  54. OneLeg.Name = "One Leg"
  55. OneLeg.Parent = main
  56. OneLeg.BackgroundColor3 = Color3.new(0.333333, 1, 0)
  57. OneLeg.Position = UDim2.new(0.614457846, 0, 0.379146934, 0)
  58. OneLeg.Size = UDim2.new(0, 110, 0, 50)
  59. OneLeg.Font = Enum.Font.GothamBold
  60. OneLeg.Text = "One Leg"
  61. OneLeg.TextColor3 = Color3.new(0, 0, 0)
  62. OneLeg.TextScaled = true
  63. OneLeg.TextSize = 14
  64. OneLeg.TextWrapped = true
  65. OneLeg.MouseButton1Down:connect(function()
  66. game.Players.LocalPlayer.Character['Right Leg']:remove()
  67. end)
  68.  
  69. close.Name = "close"
  70. close.Parent = main
  71. close.BackgroundColor3 = Color3.new(1, 0, 0)
  72. close.Position = UDim2.new(0.879518092, 0, 0, 0)
  73. close.Size = UDim2.new(0, 40, 0, 31)
  74. close.Font = Enum.Font.GothamBlack
  75. close.Text = "X"
  76. close.TextColor3 = Color3.new(0, 0, 0)
  77. close.TextScaled = true
  78. close.TextSize = 14
  79. close.TextWrapped = true
  80. close.MouseButton1Down:connect(function()
  81. main.Visible = false
  82. openmain.Visible = true
  83. end)
  84.  
  85. openmain.Name = "openmain"
  86. openmain.Parent = ScreenGui
  87. openmain.BackgroundColor3 = Color3.new(1, 1, 1)
  88. openmain.Position = UDim2.new(.001, 0, .79, 0)
  89. openmain.Size = UDim2.new(0, 100, 0, 28)
  90. openmain.Active = true
  91. openmain.Draggable = true
  92.  
  93. open.Name = "open"
  94. open.Parent = openmain
  95. open.BackgroundColor3 = Color3.new(1, 0, 0)
  96. open.Size = UDim2.new(0, 100, 0, 28)
  97. open.Font = Enum.Font.GothamBold
  98. open.Text = "OPEN"
  99. open.TextColor3 = Color3.new(0, 0, 0)
  100. open.TextSize = 18
  101. open.TextWrapped = true
  102. open.MouseButton1Down:connect(function()
  103. openmain.Visible = false
  104. main.Visible = true
  105. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement