Advertisement
AugusTH

Untitled Fe Korblox/ Headless

Nov 8th, 2023 (edited)
283
2
Never
1
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.31 KB | None | 2 0
  1. --Fe Korblox/Headless Rework By Augus_X
  2.  
  3. -- Instances:
  4.  
  5. local Main = Instance.new("ScreenGui")
  6. local MainFrame = Instance.new("Frame")
  7. local UICorner = Instance.new("UICorner")
  8. local Korblox = Instance.new("TextButton")
  9. local UICorner_2 = Instance.new("UICorner")
  10. local Headless = Instance.new("TextButton")
  11. local UICorner_3 = Instance.new("UICorner")
  12.  
  13. --Properties:
  14.  
  15. Main.Name = "Main"
  16. Main.Parent = game.CoreGui
  17. Main.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  18.  
  19. MainFrame.Name = "MainFrame"
  20. MainFrame.Parent = Main
  21. MainFrame.BackgroundColor3 = Color3.fromRGB(18, 18, 18)
  22. MainFrame.BackgroundTransparency = 0.5
  23. MainFrame.Position = UDim2.new(0.1, 0, 0.1, 0)
  24. MainFrame.Size = UDim2.new(0, 163, 0, 109)
  25. MainFrame.Active = true
  26. MainFrame.Draggable = true
  27.  
  28. UICorner.Parent = MainFrame
  29.  
  30. Korblox.Name = "Korblox"
  31. Korblox.Parent = MainFrame
  32. Korblox.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
  33. Korblox.Position = UDim2.new(0.0858895704, 0, 0.0825688019, 0)
  34. Korblox.Size = UDim2.new(0, 134, 0, 42)
  35. Korblox.Font = Enum.Font.Code
  36. Korblox.Text = "Korblox"
  37. Korblox.TextColor3 = Color3.fromRGB(255, 255, 255)
  38. Korblox.TextSize = 23.000
  39. Korblox.TextWrapped = true
  40. Korblox.MouseButton1Click:Connect(function()
  41. local ply = game.Players.LocalPlayer
  42. local chr = ply.Character
  43. chr.RightLowerLeg.MeshId = "902942093"
  44. chr.RightLowerLeg.Transparency = "1"
  45. chr.RightUpperLeg.MeshId = "http://www.roblox.com/asset/?id=902942096"
  46. chr.RightUpperLeg.TextureID = "http://roblox.com/asset/?id=902843398"
  47. chr.RightFoot.MeshId = "902942089"
  48. chr.RightFoot.Transparency = "1"
  49. end)
  50.  
  51. UICorner_2.Parent = Korblox
  52.  
  53. Headless.Name = "Headless"
  54. Headless.Parent = MainFrame
  55. Headless.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
  56. Headless.Position = UDim2.new(0.0858895704, 0, 0.522935808, 0)
  57. Headless.Size = UDim2.new(0, 134, 0, 42)
  58. Headless.Font = Enum.Font.Code
  59. Headless.Text = "Headless"
  60. Headless.TextColor3 = Color3.fromRGB(255, 255, 255)
  61. Headless.TextSize = 23.000
  62. Headless.TextWrapped = true
  63. Headless.MouseButton1Click:Connect(function()
  64. game.Players.LocalPlayer.Character.Head.Transparency = 1
  65. game.Players.LocalPlayer.Character.Head.Transparency = 1
  66. for i,v in pairs(game.Players.LocalPlayer.Character.Head:GetChildren()) do
  67. if (v:IsA("Decal")) then
  68. v.Transparency = 1
  69. end
  70. end
  71. end)
  72.  
  73. UICorner_3.Parent = Headless
Advertisement
Comments
Add Comment
Please, Sign In to add comment
Advertisement