Advertisement
hacimiks

aksjsbf

Apr 14th, 2024
708
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.30 KB | None | 0 0
  1. -- Gui to Lua
  2. -- Version: 3.2
  3.  
  4. -- Instances:
  5.  
  6. local Main = Instance.new("ScreenGui")
  7. local MainFrame = Instance.new("Frame")
  8. local UICorner = Instance.new("UICorner")
  9. local Korblox = Instance.new("TextButton")
  10. local UICorner_2 = Instance.new("UICorner")
  11. local Headless = Instance.new("TextButton")
  12. local UICorner_3 = Instance.new("UICorner")
  13.  
  14. --Properties:
  15.  
  16. Main.Name = "Main"
  17. Main.Parent = game.CoreGui
  18. Main.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  19.  
  20. MainFrame.Name = "MainFrame"
  21. MainFrame.Parent = Main
  22. MainFrame.BackgroundColor3 = Color3.fromRGB(30, 30, 30)
  23. MainFrame.Position = UDim2.new(0.0751346573, 0, 0.743494451, 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(50, 50, 50)
  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.GothamBlack
  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(50, 50, 50)
  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.GothamBlack
  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
Add Comment
Please, Sign In to add comment
Advertisement