Techhie

Test GUI V1

May 29th, 2022
37
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.11 KB | None | 0 0
  1. -- Gui to Lua
  2. -- Version: 3.2
  3.  
  4. -- Instances:
  5.  
  6. local ScreenGui = Instance.new("ScreenGui")
  7. local Main = Instance.new("Frame")
  8. local Label = Instance.new("TextLabel")
  9. local InfYield = Instance.new("TextButton")
  10. local Respawn = Instance.new("TextButton")
  11. local Frame = Instance.new("Frame")
  12. local DMHX = Instance.new("TextButton")
  13.  
  14. --Properties:
  15.  
  16. ScreenGui.Parent = game.CoreGui
  17.  
  18. Main.Name = "Main"
  19. Main.Parent = ScreenGui
  20. Main.BackgroundColor3 = Color3.fromRGB(61, 61, 61)
  21. Main.BorderSizePixel = 0
  22. Main.Position = UDim2.new(0.790909111, 0, 0.584637284, 0)
  23. Main.Size = UDim2.new(0, 323, 0, 272)
  24. Main.Active = true
  25. Main.Draggable = true
  26.  
  27. Label.Name = "Label"
  28. Label.Parent = Main
  29. Label.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  30. Label.BackgroundTransparency = 1.000
  31. Label.Size = UDim2.new(0, 323, 0, 37)
  32. Label.Font = Enum.Font.SourceSansLight
  33. Label.Text = "Test GUI V1"
  34. Label.TextColor3 = Color3.fromRGB(229, 229, 229)
  35. Label.TextScaled = true
  36. Label.TextSize = 14.000
  37. Label.TextWrapped = true
  38.  
  39. InfYield.Name = "Inf Yield"
  40. InfYield.Parent = Main
  41. InfYield.BackgroundColor3 = Color3.fromRGB(81, 81, 81)
  42. InfYield.BorderSizePixel = 0
  43. InfYield.Position = UDim2.new(0.188854486, 0, 0.194852948, 0)
  44. InfYield.Size = UDim2.new(0, 200, 0, 50)
  45. InfYield.Font = Enum.Font.SourceSans
  46. InfYield.Text = "Inf Yield"
  47. InfYield.TextColor3 = Color3.fromRGB(255, 255, 255)
  48. InfYield.TextScaled = true
  49. InfYield.TextSize = 14.000
  50. InfYield.TextWrapped = true
  51. InfYield.MouseButton1Down:Connect(function()
  52. loadstring(game:HttpGet('https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source'))()
  53.  
  54. end)
  55.  
  56. Respawn.Name = "Respawn"
  57. Respawn.Parent = Main
  58. Respawn.BackgroundColor3 = Color3.fromRGB(81, 81, 81)
  59. Respawn.BorderSizePixel = 0
  60. Respawn.Position = UDim2.new(0.188854486, 0, 0.727941155, 0)
  61. Respawn.Size = UDim2.new(0, 200, 0, 50)
  62. Respawn.Font = Enum.Font.SourceSans
  63. Respawn.Text = "Respawn"
  64. Respawn.TextColor3 = Color3.fromRGB(255, 255, 255)
  65. Respawn.TextScaled = true
  66. Respawn.TextSize = 14.000
  67. Respawn.TextWrapped = true
  68. Respawn.MouseButton1Down:Connect(function()
  69. game.Players.LocalPlayer.Character.Head:Destroy()
  70. if game.Players.LocalPlayer.Character.Humanoid.Health < 5 then
  71. local deathmanok = game.Players.LocalPlayer.Character:FindFirstChild("HumanoidRootPart").position
  72. wait(1.5)
  73. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(deathmanok)
  74. end
  75. end)
  76.  
  77. Frame.Parent = Main
  78. Frame.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  79. Frame.Position = UDim2.new(0, 0, 0.136029407, 0)
  80. Frame.Size = UDim2.new(0, 323, 0, 3)
  81.  
  82. DMHX.Name = "DMH-X"
  83. DMHX.Parent = Main
  84. DMHX.BackgroundColor3 = Color3.fromRGB(81, 81, 81)
  85. DMHX.BorderSizePixel = 0
  86. DMHX.Position = UDim2.new(0.188854486, 0, 0.459558815, 0)
  87. DMHX.Size = UDim2.new(0, 200, 0, 50)
  88. DMHX.Font = Enum.Font.SourceSans
  89. DMHX.Text = "DMH-X"
  90. DMHX.TextColor3 = Color3.fromRGB(255, 255, 255)
  91. DMHX.TextScaled = true
  92. DMHX.TextSize = 14.000
  93. DMHX.TextWrapped = true
  94. DMHX.MouseButton1Down:Connect(function()
  95. -- DomainX Loadstring
  96. loadstring(game:HttpGet('https://raw.githubusercontent.com/shlexware/DomainX/main/source',true))()
  97. end)
Add Comment
Please, Sign In to add comment