vaux19

Untitled

Mar 31st, 2020 (edited)
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.93 KB | None | 0 0
  1. -- Gui to Lua
  2. -- Version: 3.2
  3.  
  4. -- Instances:
  5.  
  6. local ShotoutGui = Instance.new("ScreenGui")
  7. local Hack = Instance.new("ImageLabel")
  8. local InfAmmo = Instance.new("TextButton")
  9. local SilentAim = Instance.new("TextButton")
  10. local Speed = Instance.new("TextButton")
  11. local DestroyGui = Instance.new("TextButton")
  12. local LuckyBlockGui = Instance.new("TextLabel")
  13.  
  14. --Properties:
  15.  
  16. ShotoutGui.Name = "Shotout Gui"
  17. ShotoutGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  18. ShotoutGui.Parent = game.CoreGui
  19.  
  20. Hack.Name = "Hack"
  21. Hack.Parent = ShotoutGui
  22. Hack.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  23. Hack.BackgroundTransparency = 1.000
  24. Hack.Position = UDim2.new(0.0209747124, 0, 0.0675675645, 0)
  25. Hack.Size = UDim2.new(0, 117, 0, 326)
  26. Hack.Image = "rbxassetid://3570695787"
  27. Hack.ImageColor3 = Color3.fromRGB(0, 0, 0)
  28. Hack.ScaleType = Enum.ScaleType.Slice
  29. Hack.SliceCenter = Rect.new(100, 100, 100, 100)
  30. Hack.SliceScale = 0.120
  31. Hack.Active = true
  32. Hack.Draggable = true
  33.  
  34. InfAmmo.Name = "Inf Ammo"
  35. InfAmmo.Parent = Hack
  36. InfAmmo.BackgroundColor3 = Color3.fromRGB(85, 255, 127)
  37. InfAmmo.BorderSizePixel = 0
  38. InfAmmo.Position = UDim2.new(-6.52085035e-08, 0, 0.177914113, 0)
  39. InfAmmo.Size = UDim2.new(0, 117, 0, 50)
  40. InfAmmo.Font = Enum.Font.Code
  41. InfAmmo.Text = "Inf Ammo"
  42. InfAmmo.TextColor3 = Color3.fromRGB(255, 255, 255)
  43. InfAmmo.TextScaled = true
  44. InfAmmo.TextSize = 25.000
  45. InfAmmo.TextWrapped = true
  46. InfAmmo.MouseButton1Click:connect(function()
  47. local WeapnData = game:GetService("ReplicatedFirst")["_0xS0URC3X"].Shared.WeaponDataManager
  48.  
  49. for i,v in pairs(WeapnData:GetChildren()) do
  50. if v.ClassName == "ModuleScript" then
  51. local p = require(v)
  52. p.Settings.MAX_AMMO = math.huge
  53. p.Settings.RECOIL_STRENGTH = 0
  54. p.Settings.SPREAD = 0
  55. p.Settings.RELOAD_TIME = 0
  56. p.Settings.AUTOMATIC = true
  57. p.Settings.SPRINT_SPEED = 400
  58. p.Settings.ROF = 1000
  59. end
  60. end
  61. end)
  62. SilentAim.Name = "SilentAim"
  63. SilentAim.Parent = Hack
  64. SilentAim.BackgroundColor3 = Color3.fromRGB(85, 255, 127)
  65. SilentAim.BorderSizePixel = 0
  66. SilentAim.Position = UDim2.new(-6.52085035e-08, 0, 0.404908001, 0)
  67. SilentAim.Size = UDim2.new(0, 117, 0, 50)
  68. SilentAim.Font = Enum.Font.Code
  69. SilentAim.Text = "Silentaim"
  70. SilentAim.TextColor3 = Color3.fromRGB(255, 255, 255)
  71. SilentAim.TextSize = 24.000
  72. SilentAim.TextWrapped = true
  73. SilentAim.MouseButton1Click:connect(function()
  74. local a = require(game:GetService("ReplicatedFirst")["_0xS0URC3X"].Shared.AimAssistSettings)
  75. a.MaxScreenCoverage = 999999
  76. a.MaxKDR = 99999999.99999999
  77. a.MaxRange = 999999999
  78. end)
  79. Speed.Name = "Speed"
  80. Speed.Parent = Hack
  81. Speed.BackgroundColor3 = Color3.fromRGB(85, 255, 127)
  82. Speed.BorderSizePixel = 0
  83. Speed.Position = UDim2.new(-6.52085035e-08, 0, 0.63190186, 0)
  84. Speed.Size = UDim2.new(0, 117, 0, 50)
  85. Speed.Font = Enum.Font.Code
  86. Speed.Text = "[X] Speed"
  87. Speed.TextColor3 = Color3.fromRGB(255, 255, 255)
  88. Speed.TextScaled = true
  89. Speed.TextSize = 24.000
  90. Speed.TextWrapped = true
  91. Speed.MouseButton1Click:connect(function()
  92. local walkspeedplayer = game:GetService("Players").LocalPlayer
  93. local walkspeedmouse = walkspeedplayer:GetMouse()
  94.  
  95. local walkspeedenabled = false
  96.  
  97. function x_walkspeed(key)
  98. if (key == "x") then
  99. if walkspeedenabled == false then
  100. _G.WS = 40;
  101. local Humanoid = game:GetService("Players").LocalPlayer.Character.Humanoid;
  102. Humanoid:GetPropertyChangedSignal("WalkSpeed"):Connect(function()
  103. Humanoid.WalkSpeed = _G.WS;
  104. end)
  105. Humanoid.WalkSpeed = _G.WS;
  106.  
  107. walkspeedenabled = true
  108. elseif walkspeedenabled == true then
  109. _G.WS = 40;
  110. local Humanoid = game:GetService("Players").LocalPlayer.Character.Humanoid;
  111. Humanoid:GetPropertyChangedSignal("WalkSpeed"):Connect(function()
  112. Humanoid.WalkSpeed = _G.WS;
  113. end)
  114. Humanoid.WalkSpeed = _G.WS;
  115.  
  116. walkspeedenabled = false
  117. end
  118. end
  119. end
  120.  
  121. walkspeedmouse.KeyDown:connect(x_walkspeed)
  122.  
  123. end)
  124. DestroyGui.Name = "Destroy Gui"
  125. DestroyGui.Parent = Hack
  126. DestroyGui.BackgroundColor3 = Color3.fromRGB(85, 255, 127)
  127. DestroyGui.BackgroundTransparency = 1.000
  128. DestroyGui.BorderSizePixel = 0
  129. DestroyGui.Position = UDim2.new(-6.52085035e-08, 0, 0.846625745, 0)
  130. DestroyGui.Size = UDim2.new(0, 117, 0, 50)
  131. DestroyGui.Font = Enum.Font.Code
  132. DestroyGui.Text = "Destroy"
  133. DestroyGui.TextColor3 = Color3.fromRGB(255, 255, 255)
  134. DestroyGui.TextSize = 24.000
  135. DestroyGui.TextWrapped = true
  136. DestroyGui.MouseButton1Click:connect(function()
  137. Hack.Visible = false
  138. end)
  139. LuckyBlockGui.Name = "Lucky Block Gui"
  140. LuckyBlockGui.Parent = Hack
  141. LuckyBlockGui.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  142. LuckyBlockGui.BackgroundTransparency = 1.000
  143. LuckyBlockGui.Position = UDim2.new(-6.52085035e-08, 0, 0, 0)
  144. LuckyBlockGui.Size = UDim2.new(0, 117, 0, 50)
  145. LuckyBlockGui.Font = Enum.Font.Code
  146. LuckyBlockGui.Text = "Shotout Gui"
  147. LuckyBlockGui.TextColor3 = Color3.fromRGB(255, 255, 255)
  148. LuckyBlockGui.TextScaled = true
  149. LuckyBlockGui.TextSize = 24.000
  150. LuckyBlockGui.TextWrapped = true
Add Comment
Please, Sign In to add comment