Advertisement
Guest User

Untitled

a guest
Oct 22nd, 2017
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.54 KB | None | 0 0
  1. spawn(function()
  2. while wait(0.05) do
  3. game:GetService("Workspace").Name = "Workspace"
  4. game:GetService("ReplicatedStorage").Name = "ReplicatedStorage"
  5. game:GetService("Players").Name = "Players"
  6. end
  7. end)
  8. function Bypass()
  9. game:GetService('Workspace').Name = "Workspace"
  10. game.Workspace.Banks:GetChildren()[1].Name="Bank"
  11. game.Workspace.Jewelrys:GetChildren()[1].Name="Jewelry"
  12. game:GetService('Players').Name = "Players"
  13. game:GetService('ReplicatedStorage').Name = "ReplicatedStorage"
  14. end
  15. Bypass()
  16. local ScreenGui = Instance.new("ScreenGui")
  17. local menubar = Instance.new("Frame")
  18. local TextLabel = Instance.new("TextLabel")
  19. local ak = Instance.new("TextButton")
  20. local pistol = Instance.new("TextButton")
  21. local shotgun = Instance.new("TextButton")
  22.  
  23. -- Properties
  24.  
  25. ScreenGui.Parent = game.StarterGui
  26.  
  27. menubar.Name = "menubar"
  28. menubar.Parent = ScreenGui
  29. menubar.BackgroundColor3 = Color3.new(0.207843, 0.870588, 1)
  30. menubar.BorderSizePixel = 0
  31. menubar.Position = UDim2.new(0.00500000035, 0, 0.012000001, 0)
  32. menubar.Size = UDim2.new(0, 112, 0, 199)
  33.  
  34. TextLabel.Parent = menubar
  35. TextLabel.Active = true
  36. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  37. TextLabel.BackgroundTransparency = 1
  38. TextLabel.Draggable = true
  39. TextLabel.Position = UDim2.new(-0.0210000016, 0, 0, 0)
  40. TextLabel.Selectable = true
  41. TextLabel.Size = UDim2.new(0, 112, 0, 50)
  42. TextLabel.Font = Enum.Font.SourceSansLight
  43. TextLabel.FontSize = Enum.FontSize.Size28
  44. TextLabel.Text = "EZBreak"
  45. TextLabel.TextColor3 = Color3.new(1, 1, 1)
  46. TextLabel.TextSize = 28
  47.  
  48. ak.Name = "ak"
  49. ak.Parent = menubar
  50. ak.BackgroundColor3 = Color3.new(1, 1, 1)
  51. ak.BorderSizePixel = 0
  52. ak.Position = UDim2.new(0.0719999969, 0, 0.407999873, 0)
  53. ak.Size = UDim2.new(0, 95, 0, 29)
  54. ak.Font = Enum.Font.SourceSansLight
  55. ak.FontSize = Enum.FontSize.Size18
  56. ak.Text = "AK-47"
  57. ak.TextColor3 = Color3.new(0.207843, 0.870588, 1)
  58. ak.TextSize = 18
  59.  
  60. pistol.Name = "pistol"
  61. pistol.Parent = menubar
  62. pistol.BackgroundColor3 = Color3.new(1, 1, 1)
  63. pistol.BorderSizePixel = 0
  64. pistol.Position = UDim2.new(0.0719999745, 0, 0.228, 0)
  65. pistol.Size = UDim2.new(0, 95, 0, 29)
  66. pistol.Font = Enum.Font.SourceSansLight
  67. pistol.FontSize = Enum.FontSize.Size18
  68. pistol.Text = "Pistol"
  69. pistol.TextColor3 = Color3.new(0.207843, 0.870588, 1)
  70. pistol.TextSize = 18
  71.  
  72. shotgun.Name = "shotgun"
  73. shotgun.Parent = menubar
  74. shotgun.BackgroundColor3 = Color3.new(1, 1, 1)
  75. shotgun.BorderSizePixel = 0
  76. shotgun.Position = UDim2.new(0.0719999969, 0, 0.587999701, 0)
  77. shotgun.Size = UDim2.new(0, 95, 0, 29)
  78. shotgun.Font = Enum.Font.SourceSansLight
  79. shotgun.FontSize = Enum.FontSize.Size18
  80. shotgun.Text = "Shotgun"
  81. shotgun.TextColor3 = Color3.new(0.207843, 0.870588, 1)
  82. shotgun.TextSize = 18
  83.  
  84. pistol.MouseButton1Click:connect(function()
  85. local hit = game.Players.LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(0,0,-3)
  86.  
  87. a = Instance.new("Part", workspace)
  88. a.Anchored = true
  89. a.Position = game.Players.LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(0,0,-3)
  90. a.CanCollide = false
  91.  
  92. for i, v in pairs(game.Workspace.Givers:GetChildren()) do
  93. if v.Name == "Station" then
  94. for a, b in pairs(v:GetChildren()) do
  95. if b:IsA("StringValue") then
  96. if b.Value == "Pistol" then
  97. v.CFrame = CFrame.new(hit)
  98. end
  99. end
  100. end
  101. end
  102. end
  103. end)
  104.  
  105. shotgun.MouseButton1Click:connect(function()
  106. local hit = game.Players.LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(0,0,-3)
  107.  
  108. a = Instance.new("Part", workspace)
  109. a.Anchored = true
  110. a.Position = game.Players.LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(0,0,-3)
  111. a.CanCollide = false
  112.  
  113. for i, v in pairs(game.Workspace.Givers:GetChildren()) do
  114. if v.Name == "Station" then
  115. for a, b in pairs(v:GetChildren()) do
  116. if b:IsA("StringValue") then
  117. if b.Value == "Shotgun" then
  118. v.CFrame = CFrame.new(hit)
  119. end
  120. end
  121. end
  122. end
  123. end
  124. end)
  125.  
  126. ak.MouseButton1Click:connect(function()
  127. local hit = game.Players.LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(0,0,-3)
  128.  
  129. a = Instance.new("Part", workspace)
  130. a.Anchored = true
  131. a.Position = game.Players.LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(0,0,-3)
  132. a.CanCollide = false
  133.  
  134. for i, v in pairs(game.Workspace.Givers:GetChildren()) do
  135. if v.Name == "ShootingRange" then
  136. for a, b in pairs(v:GetChildren()) do
  137. if b:IsA("StringValue") then
  138. if b.Value == "AK47" then
  139. v.CFrame = CFrame.new(hit)
  140. end
  141. end
  142. end
  143. end
  144. end
  145. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement