Advertisement
MindOfPlayer

Untitled

Apr 1st, 2020
269
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.99 KB | None | 0 0
  1. --by MindOfPlayer
  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 = "MindOfPlayer's 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. local char = game.Players.LocalPlayer.Character
  47. char.Head.Transparency = 1
  48. game.Workspace.LocalPlayer.Head.face:remove()
  49. end)
  50.  
  51. OneLeg.Name = "One Leg"
  52. OneLeg.Parent = main
  53. OneLeg.BackgroundColor3 = Color3.new(0.333333, 1, 0)
  54. OneLeg.Position = UDim2.new(0.614457846, 0, 0.379146934, 0)
  55. OneLeg.Size = UDim2.new(0, 110, 0, 50)
  56. OneLeg.Font = Enum.Font.GothamBold
  57. OneLeg.Text = "One Leg"
  58. OneLeg.TextColor3 = Color3.new(0, 0, 0)
  59. OneLeg.TextScaled = true
  60. OneLeg.TextSize = 14
  61. OneLeg.TextWrapped = true
  62. OneLeg.MouseButton1Down:connect(function()
  63. game.Players.LocalPlayer.Character['Right Leg']:remove()
  64. end)
  65.  
  66. close.Name = "close"
  67. close.Parent = main
  68. close.BackgroundColor3 = Color3.new(1, 0, 0)
  69. close.Position = UDim2.new(0.879518092, 0, 0, 0)
  70. close.Size = UDim2.new(0, 40, 0, 31)
  71. close.Font = Enum.Font.GothamBlack
  72. close.Text = "X"
  73. close.TextColor3 = Color3.new(0, 0, 0)
  74. close.TextScaled = true
  75. close.TextSize = 14
  76. close.TextWrapped = true
  77. close.MouseButton1Down:connect(function()
  78. main.Visible = false
  79. openmain.Visible = true
  80. end)
  81.  
  82. openmain.Name = "openmain"
  83. openmain.Parent = ScreenGui
  84. openmain.BackgroundColor3 = Color3.new(1, 1, 1)
  85. openmain.Position = UDim2.new(.001, 0, .89, 0)
  86. openmain.Size = UDim2.new(0, 100, 0, 28)
  87. openmain.Active = true
  88. openmain.Draggable = true
  89.  
  90. open.Name = "open"
  91. open.Parent = openmain
  92. open.BackgroundColor3 = Color3.new(1, 0, 0)
  93. open.Size = UDim2.new(0, 100, 0, 28)
  94. open.Font = Enum.Font.GothamBold
  95. open.Text = "OPEN"
  96. open.TextColor3 = Color3.new(0, 0, 0)
  97. open.TextSize = 18
  98. open.TextWrapped = true
  99. open.MouseButton1Down:connect(function()
  100. openmain.Visible = false
  101. main.Visible = true
  102. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement