Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local FN = Instance.new("ScreenGui")
- local Main = Instance.new("Frame")
- local Md = Instance.new("TextButton")
- local title = Instance.new("TextLabel")
- FN.Name = "FN"
- FN.Parent = game.CoreGui
- FN.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
- Main.Name = "Main"
- Main.Parent = FN
- Main.BackgroundColor3 = Color3.new(0.533333, 0.533333, 0.533333)
- Main.BorderSizePixel = 0
- Main.Position = UDim2.new(0.334854007, 0, 0.294212222, 0)
- Main.Size = UDim2.new(0, 443, 0, 192)
- Main.Active = true
- Main.Draggable = true
- Md.Name = "Md"
- Md.Parent = Main
- Md.BackgroundColor3 = Color3.new(0.317647, 0.317647, 0.317647)
- Md.BorderSizePixel = 0
- Md.Position = UDim2.new(0.128378376, 0, 0.375, 0)
- Md.Size = UDim2.new(0, 330, 0, 101)
- Md.Font = Enum.Font.Roboto
- Md.Text = "Mod Pistol"
- Md.TextColor3 = Color3.new(0, 0, 0)
- Md.TextScaled = true
- Md.TextSize = 14
- Md.TextWrapped = true
- Md.MouseButton1Click:connect(function()
- local g = require(game:GetService("Players").LocalPlayer.Backpack.CommonPistol.Setting)
- g.BaseDamage = 40 --Feel free to change this!
- g.FireRate = 0.2 --Feel free to change this!
- g.ReloadTime = 0.1 --Feel free to change this!
- g.Spread = 0.9 --Feel free to change this!
- g.AmmoPerClip = math.huge -- basically infinte ammo LOL
- g.Clips = 2000 --Feel free to change this!
- g.MaxClip = 40000 --Feel free to change this!
- end)
- title.Name = "title"
- title.Parent = Main
- title.BackgroundColor3 = Color3.new(0.313726, 0.313726, 0.313726)
- title.Position = UDim2.new(0.0292792786, 0, 0.033088237, 0)
- title.Size = UDim2.new(0, 418, 0, 33)
- title.Font = Enum.Font.SourceSans
- title.Text = "Bennyxx Scriptz"
- title.TextColor3 = Color3.new(0, 0, 0)
- title.TextScaled = true
- title.TextSize = 14
- title.TextWrapped = true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement