Advertisement
DarkSerpent

Better gui for hat giant script not mines btw

Mar 25th, 2021
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.02 KB | None | 0 0
  1. -- Gui to Lua
  2. -- Version: 3.2
  3.  
  4. -- Instances:
  5.  
  6. local FEHATS = Instance.new("ScreenGui")
  7. local main = Instance.new("Frame")
  8. local gsdfgsd = Instance.new("TextLabel")
  9. local biggerhat = Instance.new("TextButton")
  10. local drophats = Instance.new("TextButton")
  11. local admin = Instance.new("TextButton")
  12.  
  13. --Properties:
  14.  
  15. FEHATS.Name = "FE HATS"
  16. FEHATS.Parent = game.CoreGui
  17.  
  18. main.Name = "main"
  19. main.Parent = FEHATS
  20. main.BackgroundColor3 = Color3.fromRGB(90, 90, 90)
  21. main.BorderSizePixel = 5
  22. main.Position = UDim2.new(0.805675507, 0, 0.380835384, 0)
  23. main.Size = UDim2.new(0, 141, 0, 194)
  24. main.Active = true
  25. main.Draggable = true
  26.  
  27. gsdfgsd.Name = "gsdfgsd"
  28. gsdfgsd.Parent = main
  29. gsdfgsd.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  30. gsdfgsd.BackgroundTransparency = 1.000
  31. gsdfgsd.Position = UDim2.new(0, 0, -0.0309278369, 0)
  32. gsdfgsd.Size = UDim2.new(0, 140, 0, 32)
  33. gsdfgsd.Font = Enum.Font.SourceSansBold
  34. gsdfgsd.Text = "FE GIANT HAT"
  35. gsdfgsd.TextColor3 = Color3.fromRGB(0, 0, 0)
  36. gsdfgsd.TextSize = 20.000
  37. gsdfgsd.TextWrapped = true
  38.  
  39. biggerhat.Name = "biggerhat"
  40. biggerhat.Parent = main
  41. biggerhat.BackgroundColor3 = Color3.fromRGB(122, 122, 122)
  42. biggerhat.BorderSizePixel = 5
  43. biggerhat.Position = UDim2.new(0, 0, 0.170103088, 0)
  44. biggerhat.Size = UDim2.new(0, 140, 0, 28)
  45. biggerhat.Font = Enum.Font.SourceSansBold
  46. biggerhat.Text = "Make Hat Bigger"
  47. biggerhat.TextColor3 = Color3.fromRGB(0, 0, 0)
  48. biggerhat.TextSize = 20.000
  49. biggerhat.TextWrapped = true
  50.  
  51. drophats.Name = "drophats"
  52. drophats.Parent = main
  53. drophats.BackgroundColor3 = Color3.fromRGB(122, 122, 122)
  54. drophats.BorderSizePixel = 5
  55. drophats.Position = UDim2.new(0, 0, 0.427835047, 0)
  56. drophats.Size = UDim2.new(0, 140, 0, 28)
  57. drophats.Font = Enum.Font.SourceSansBold
  58. drophats.Text = "Drop Hats( Press = )"
  59. drophats.TextColor3 = Color3.fromRGB(0, 0, 0)
  60. drophats.TextScaled = true
  61. drophats.TextSize = 20.000
  62. drophats.TextWrapped = true
  63.  
  64. admin.Name = "admin"
  65. admin.Parent = main
  66. admin.BackgroundColor3 = Color3.fromRGB(122, 122, 122)
  67. admin.BorderSizePixel = 5
  68. admin.Position = UDim2.new(0, 0, 0.690721631, 0)
  69. admin.Size = UDim2.new(0, 140, 0, 28)
  70. admin.Font = Enum.Font.SourceSansBold
  71. admin.Text = "Admin Script"
  72. admin.TextColor3 = Color3.fromRGB(0, 0, 0)
  73. admin.TextSize = 20.000
  74. admin.TextWrapped = true
  75.  
  76. main.Active = true
  77. main.Draggable = true
  78.  
  79. admin.MouseButton1Click:connect(function()
  80. loadstring(game:HttpGet("https://pastebin.com/raw/CKbPg9NC", true))()
  81. end)
  82.  
  83. drophats.MouseButton1Click:connect(function()
  84. game.Players.LocalPlayer:GetMouse().KeyDown:connect(function(key)
  85. if (key=="=") then
  86. for i,v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
  87. if (v:IsA("Accessory")) then
  88. v.Parent = workspace
  89. end
  90. end
  91. end
  92. end)
  93. end)
  94.  
  95. biggerhat.MouseButton1Click:connect(function()
  96. local Hat = game.Players.LocalPlayer.Character:FindFirstChildOfClass("Accessory")
  97. Hat.Handle.OriginalSize:Destroy()
  98. Hat.Parent = workspace
  99. firetouchinterest(Hat:WaitForChild("Handle"),game.Players.LocalPlayer.Character.Head,0)
  100. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement