Advertisement
Ben_Scripts343

Battle Royale Script Bennyxx Scriptz

Apr 16th, 2021
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.72 KB | None | 0 0
  1. local FN = Instance.new("ScreenGui")
  2. local Main = Instance.new("Frame")
  3. local Md = Instance.new("TextButton")
  4. local title = Instance.new("TextLabel")
  5.  
  6. FN.Name = "FN"
  7. FN.Parent = game.CoreGui
  8. FN.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  9.  
  10. Main.Name = "Main"
  11. Main.Parent = FN
  12. Main.BackgroundColor3 = Color3.new(0.533333, 0.533333, 0.533333)
  13. Main.BorderSizePixel = 0
  14. Main.Position = UDim2.new(0.334854007, 0, 0.294212222, 0)
  15. Main.Size = UDim2.new(0, 443, 0, 192)
  16. Main.Active = true
  17. Main.Draggable = true
  18.  
  19. Md.Name = "Md"
  20. Md.Parent = Main
  21. Md.BackgroundColor3 = Color3.new(0.317647, 0.317647, 0.317647)
  22. Md.BorderSizePixel = 0
  23. Md.Position = UDim2.new(0.128378376, 0, 0.375, 0)
  24. Md.Size = UDim2.new(0, 330, 0, 101)
  25. Md.Font = Enum.Font.Roboto
  26. Md.Text = "Mod Pistol"
  27. Md.TextColor3 = Color3.new(0, 0, 0)
  28. Md.TextScaled = true
  29. Md.TextSize = 14
  30. Md.TextWrapped = true
  31. Md.MouseButton1Click:connect(function()
  32. local g = require(game:GetService("Players").LocalPlayer.Backpack.CommonPistol.Setting)
  33. g.BaseDamage = 40 --Feel free to change this!
  34. g.FireRate = 0.2 --Feel free to change this!
  35. g.ReloadTime = 0.1 --Feel free to change this!
  36. g.Spread = 0.9 --Feel free to change this!
  37. g.AmmoPerClip = math.huge -- basically infinte ammo LOL
  38. g.Clips = 2000 --Feel free to change this!
  39. g.MaxClip = 40000 --Feel free to change this!
  40.  
  41. end)
  42.  
  43. title.Name = "title"
  44. title.Parent = Main
  45. title.BackgroundColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  46. title.Position = UDim2.new(0.0292792786, 0, 0.033088237, 0)
  47. title.Size = UDim2.new(0, 418, 0, 33)
  48. title.Font = Enum.Font.SourceSans
  49. title.Text = "Bennyxx Scriptz"
  50. title.TextColor3 = Color3.new(0, 0, 0)
  51. title.TextScaled = true
  52. title.TextSize = 14
  53. title.TextWrapped = true
  54.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement