XDMANFROMXDWORLD

ROBLOX Head Resize GUI Script

Jun 26th, 2018
148
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.61 KB | None | 0 0
  1. local YEAHBOI = Instance.new("ScreenGui")
  2. local Frame = Instance.new("Frame")
  3. local victim = Instance.new("TextBox")
  4. local size = Instance.new("TextBox")
  5. local size2 = Instance.new("TextBox")
  6. local size3 = Instance.new("TextBox")
  7. local rekt = Instance.new("TextButton")
  8. local Frame_2 = Instance.new("Frame")
  9. local TextLabel = Instance.new("TextLabel")
  10. local TextLabel_2 = Instance.new("TextLabel")
  11. YEAHBOI.Name = "YEAH BOI"
  12. YEAHBOI.Parent = game.CoreGui
  13. Frame.Parent = YEAHBOI
  14. Frame.BackgroundColor3 = Color3.new(0.27451, 0.27451, 0.27451)
  15. Frame.BorderSizePixel = 0
  16. Frame.Position = UDim2.new(0, 0, 0, 251)
  17. Frame.Size = UDim2.new(0, 320, 0, 214)
  18. victim.Name = "victim"
  19. victim.Parent = Frame
  20. victim.BackgroundColor3 = Color3.new(0.415686, 0.258824, 0.258824)
  21. victim.BorderSizePixel = 0
  22. victim.Position = UDim2.new(0, 60, 0, 42)
  23. victim.Size = UDim2.new(0, 200, 0, 25)
  24. victim.Font = Enum.Font.SourceSans
  25. victim.FontSize = Enum.FontSize.Size14
  26. victim.Text = "Victim"
  27. victim.TextColor3 = Color3.new(1, 1, 1)
  28. victim.TextSize = 14
  29. size.Name = "size"
  30. size.Parent = Frame
  31. size.BackgroundColor3 = Color3.new(0.415686, 0.258824, 0.258824)
  32. size.BorderSizePixel = 0
  33. size.Position = UDim2.new(0, 0, 0, 128)
  34. size.Size = UDim2.new(0, 80, 0, 25)
  35. size.Font = Enum.Font.SourceSans
  36. size.FontSize = Enum.FontSize.Size14
  37. size.Text = "1.25"
  38. size.TextColor3 = Color3.new(1, 1, 1)
  39. size.TextSize = 14
  40. size2.Name = "size2"
  41. size2.Parent = Frame
  42. size2.BackgroundColor3 = Color3.new(0.415686, 0.258824, 0.258824)
  43. size2.BorderSizePixel = 0
  44. size2.Position = UDim2.new(0, 120, 0, 128)
  45. size2.Size = UDim2.new(0, 80, 0, 25)
  46. size2.Font = Enum.Font.SourceSans
  47. size2.FontSize = Enum.FontSize.Size14
  48. size2.Text = "1.25"
  49. size2.TextColor3 = Color3.new(1, 1, 1)
  50. size2.TextSize = 14
  51. size3.Name = "size3"
  52. size3.Parent = Frame
  53. size3.BackgroundColor3 = Color3.new(0.415686, 0.258824, 0.258824)
  54. size3.BorderSizePixel = 0
  55. size3.Position = UDim2.new(0, 240, 0, 128)
  56. size3.Size = UDim2.new(0, 80, 0, 25)
  57. size3.Font = Enum.Font.SourceSans
  58. size3.FontSize = Enum.FontSize.Size14
  59. size3.Text = "1.25"
  60. size3.TextColor3 = Color3.new(1, 1, 1)
  61. size3.TextSize = 14
  62. rekt.Name = "rekt"
  63. rekt.Parent = Frame
  64. rekt.BackgroundColor3 = Color3.new(0.580392, 0.466667, 0.266667)
  65. rekt.BorderSizePixel = 0
  66. rekt.Position = UDim2.new(0, 60, 0, 178)
  67. rekt.Size = UDim2.new(0, 200, 0, 36)
  68. rekt.Font = Enum.Font.SourceSans
  69. rekt.FontSize = Enum.FontSize.Size14
  70. rekt.Text = "Resize"
  71. rekt.TextColor3 = Color3.new(1, 1, 1)
  72. rekt.TextSize = 14
  73. Frame_2.Parent = YEAHBOI
  74. Frame_2.BackgroundColor3 = Color3.new(1, 0.65098, 0.0901961)
  75. Frame_2.BorderSizePixel = 0
  76. Frame_2.Position = UDim2.new(0, 0, 0, 252)
  77. Frame_2.Size = UDim2.new(0, 320, 0, 27)
  78. TextLabel.Parent = Frame_2
  79. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  80. TextLabel.BackgroundTransparency = 1
  81. TextLabel.BorderSizePixel = 0
  82. TextLabel.Size = UDim2.new(0, 228, 0, 27)
  83. TextLabel.Font = Enum.Font.Cartoon
  84. TextLabel.FontSize = Enum.FontSize.Size24
  85. TextLabel.Text = "Head Resize GUI by HypedX"
  86. TextLabel.TextColor3 = Color3.new(1, 1, 1)
  87. TextLabel.TextSize = 20
  88. TextLabel_2.Parent = Frame_2
  89. TextLabel_2.BackgroundColor3 = Color3.new(1, 1, 1)
  90. TextLabel_2.BackgroundTransparency = 1
  91. TextLabel_2.BorderSizePixel = 0
  92. TextLabel_2.Position = UDim2.new(0, 46, 0, 78)
  93. TextLabel_2.Size = UDim2.new(0, 228, 0, 27)
  94. TextLabel_2.Font = Enum.Font.Cartoon
  95. TextLabel_2.FontSize = Enum.FontSize.Size18
  96. TextLabel_2.Text = "Size:"
  97. TextLabel_2.TextColor3 = Color3.new(1, 1, 1)
  98. TextLabel_2.TextSize = 15
  99.  
  100. rekt.MouseButton1Click:connect(function()
  101. game.Workspace[victim.Text].Head.Mesh.Scale = Vector3.new(size.Text, size2.Text, size3.Text)
  102. end)
Add Comment
Please, Sign In to add comment