Advertisement
oktosamurai

EggHax

Dec 9th, 2020
141
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 3.62 KB | None | 0 0
  1. local EggHax = Instance.new("ScreenGui")
  2. local EggHaxUI = Instance.new("ImageButton")
  3. local Speed = Instance.new("ImageButton")
  4. local SpeedText = Instance.new("TextLabel")
  5. local Jump = Instance.new("ImageButton")
  6. local JumpText = Instance.new("TextLabel")
  7. local Title = Instance.new("TextLabel")
  8. local Security = Instance.new("ImageButton")
  9.  
  10.  
  11. EggHax.Name = "EggHax"
  12. EggHax.Parent = game.CoreGui
  13.  
  14. EggHaxUI.Name = "EggHaxUI"
  15. EggHaxUI.Parent = EggHax
  16. EggHaxUI.BackgroundColor3 = Color3.fromRGB(35, 35, 35)
  17. EggHaxUI.BackgroundTransparency = 1.000
  18. EggHaxUI.Position = UDim2.new(0.547594368, 0, 0.384982169, 0)
  19. EggHaxUI.Size = UDim2.new(0, 378, 0, 254)
  20. EggHaxUI.Image = "rbxassetid://2790390993"
  21. EggHaxUI.ImageColor3 = Color3.fromRGB(35, 35, 35)
  22. EggHaxUI.ScaleType = Enum.ScaleType.Slice
  23. EggHaxUI.SliceCenter = Rect.new(16, 16, 240, 240)
  24. EggHaxUI.Draggable = true
  25.  
  26. Speed.Name = "Speed"
  27. Speed.Parent = EggHaxUI
  28. Speed.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  29. Speed.BackgroundTransparency = 1.000
  30. Speed.Position = UDim2.new(0.0687830672, 0, 0.299212605, 0)
  31. Speed.Size = UDim2.new(0, 123, 0, 37)
  32. Speed.Image = "rbxassetid://2790382281"
  33. Speed.ImageColor3 = Color3.fromRGB(0, 170, 127)
  34. Speed.ScaleType = Enum.ScaleType.Slice
  35. Speed.SliceCenter = Rect.new(4, 4, 252, 252)
  36. Speed.MouseButton1Down:connect(function()
  37.     game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 50
  38. end)
  39.  
  40. SpeedText.Name = "SpeedText"
  41. SpeedText.Parent = Speed
  42. SpeedText.AnchorPoint = Vector2.new(0.5, 0.5)
  43. SpeedText.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  44. SpeedText.BackgroundTransparency = 1.000
  45. SpeedText.BorderSizePixel = 0
  46. SpeedText.Position = UDim2.new(0.493130088, 0, 0.489864826, 0)
  47. SpeedText.Size = UDim2.new(1, -5, 1, -5)
  48. SpeedText.Font = Enum.Font.GothamSemibold
  49. SpeedText.Text = "Speed"
  50. SpeedText.TextColor3 = Color3.fromRGB(255, 255, 255)
  51. SpeedText.TextSize = 14.000
  52.  
  53. Jump.Name = "Jump"
  54. Jump.Parent = EggHaxUI
  55. Jump.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  56. Jump.BackgroundTransparency = 1.000
  57. Jump.Position = UDim2.new(0.566137552, 0, 0.303149611, 0)
  58. Jump.Size = UDim2.new(0, 123, 0, 37)
  59. Jump.Image = "rbxassetid://2790382281"
  60. Jump.ImageColor3 = Color3.fromRGB(0, 170, 127)
  61. Jump.ScaleType = Enum.ScaleType.Slice
  62. Jump.SliceCenter = Rect.new(4, 4, 252, 252)
  63. Jump.MouseButton1Down:connect(function()
  64.     game.Players.LocalPlayer.Character.Humanoid.JumpPower = 100
  65. end)
  66.  
  67. JumpText.Name = "JumpText"
  68. JumpText.Parent = Jump
  69. JumpText.AnchorPoint = Vector2.new(0.5, 0.5)
  70. JumpText.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  71. JumpText.BackgroundTransparency = 1.000
  72. JumpText.BorderSizePixel = 0
  73. JumpText.Position = UDim2.new(0.493130088, 0, 0.489864826, 0)
  74. JumpText.Size = UDim2.new(1, -5, 1, -5)
  75. JumpText.Font = Enum.Font.GothamSemibold
  76. JumpText.Text = "Jump"
  77. JumpText.TextColor3 = Color3.fromRGB(255, 255, 255)
  78. JumpText.TextSize = 14.000
  79.  
  80. Title.Name = "Title"
  81. Title.Parent = EggHax
  82. Title.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  83. Title.BackgroundTransparency = 1.000
  84. Title.BorderSizePixel = 0
  85. Title.Position = UDim2.new(0.639806569, 0, 0.386173993, 0)
  86. Title.Size = UDim2.new(0, 151, 0, 43)
  87. Title.Font = Enum.Font.SciFi
  88. Title.Text = "EggHax"
  89. Title.TextColor3 = Color3.fromRGB(197, 197, 18)
  90. Title.TextScaled = true
  91. Title.TextSize = 14.000
  92. Title.TextWrapped = true
  93.  
  94. Security.Name = "Security"
  95. Security.Parent = EggHax
  96. Security.BackgroundTransparency = 1.000
  97. Security.Position = UDim2.new(0.612409353, 0, 0.39094162, 0)
  98. Security.Size = UDim2.new(0, 33, 0, 34)
  99. Security.ZIndex = 2
  100. Security.Image = "rbxassetid://3926307971"
  101. Security.ImageRectOffset = Vector2.new(164, 284)
  102. Security.ImageRectSize = Vector2.new(36, 36)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement