HeroRbx

Korblox

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