Advertisement
hacimiks

korb + head for r6

Apr 11th, 2024 (edited)
614
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 3.42 KB | None | 0 0
  1. local ScreenGui = Instance.new("ScreenGui")
  2. local main = Instance.new("Frame")
  3. local title = Instance.new("TextLabel")
  4. local Headless = Instance.new("TextButton")
  5. local OneLeg = Instance.new("TextButton")
  6. local close = Instance.new("TextButton")
  7. local openmain = Instance.new("Frame")
  8. local open = Instance.new("TextButton")
  9.  
  10. --Properties:
  11. ScreenGui.Parent = game.CoreGui
  12.  
  13. main.Name = "main"
  14. main.Parent = ScreenGui
  15. main.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  16. main.BorderColor3 = Color3.fromRGB(0, 0, 255)
  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.fromRGB(0, 0, 0)
  26. title.BorderColor3 = Color3.fromRGB(0, 0, 255)
  27. title.Size = UDim2.new(0, 332, 0, 31)
  28. title.Font = Enum.Font.SourceSansBold
  29. title.Text = "RemiAPE | by aoki0x"
  30. title.TextColor3 = Color3.fromRGB(255, 255, 255)
  31. title.TextSize = 17
  32.  
  33. Headless.Name = "Headless"
  34. Headless.Parent = main
  35. Headless.BackgroundColor3 = Color3.fromRGB(20, 20, 20)
  36. Headless.BorderColor3 = Color3.fromRGB(0, 0, 255)
  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.SourceSans
  40. Headless.Text = "Headless"
  41. Headless.TextColor3 = Color3.fromRGB(255, 255, 255)
  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.fromRGB(20, 20, 20)
  57. OneLeg.BorderColor3 = Color3.fromRGB(0, 0, 255)
  58. OneLeg.Position = UDim2.new(0.614457846, 0, 0.379146934, 0)
  59. OneLeg.Size = UDim2.new(0, 110, 0, 50)
  60. OneLeg.Font = Enum.Font.SourceSans
  61. OneLeg.Text = "One Leg"
  62. OneLeg.TextColor3 = Color3.fromRGB(255, 255, 255)
  63. OneLeg.TextScaled = true
  64. OneLeg.TextSize = 10
  65. OneLeg.TextWrapped = true
  66. OneLeg.MouseButton1Down:connect(function()
  67. game.Players.LocalPlayer.Character['Right Leg']:remove()
  68. end)
  69.  
  70. close.Name = "close"
  71. close.Parent = main
  72. close.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  73. close.BorderColor3 = Color3.fromRGB(0, 0, 255)
  74. close.Position = UDim2.new(0.879518092, 0, 0, 0)
  75. close.Size = UDim2.new(0, 40, 0, 31)
  76. close.Font = Enum.Font.SourceSansBold
  77. close.Text = "X"
  78. close.TextColor3 = Color3.fromRGB(255, 255, 255)
  79. close.TextScaled = true
  80. close.TextSize = 14
  81. close.TextWrapped = true
  82. close.MouseButton1Down:connect(function()
  83. main.Visible = false
  84. openmain.Visible = true
  85. end)
  86.  
  87. openmain.Name = "openmain"
  88. openmain.Parent = ScreenGui
  89. openmain.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  90. openmain.BorderColor3 = Color3.fromRGB(0, 0, 255)
  91. openmain.Position = UDim2.new(.001, 0, .79, 0)
  92. openmain.Size = UDim2.new(0, 100, 0, 28)
  93. openmain.Active = true
  94. openmain.Draggable = true
  95.  
  96. open.Name = "open"
  97. open.Parent = openmain
  98. open.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  99. open.BorderColor3 = Color3.fromRGB(0, 0, 255)
  100. open.Size = UDim2.new(0, 100, 0, 28)
  101. open.Font = Enum.Font.SourceSansBold
  102. open.Text = "OPEN"
  103. open.TextColor3 = Color3.fromRGB(255, 255, 255)
  104. open.TextSize = 18
  105. open.TextWrapped = true
  106. open.MouseButton1Down:connect(function()
  107. openmain.Visible = false
  108. main.Visible = true
  109. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement