local a=Instance.new("ScreenGui")
local b=Instance.new("Frame")
local c=Instance.new("Frame")
local d=Instance.new("Frame")
local e=Instance.new("TextLabel")
local f=Instance.new("Frame")
local g=Instance.new("TextLabel")
local h=Instance.new("Frame")
local i=Instance.new("Frame")
local j=Instance.new("TextLabel")
local k=Instance.new("TextButton")
a.Parent=game:GetService("CoreGui")
a.ZIndexBehavior=Enum.ZIndexBehavior.Sibling
b.Name="CatchingFrame"
b.Parent=a
b.BackgroundColor3=Color3.fromRGB(50,50,50)
b.BorderSizePixel=0
b.Position=UDim2.new(0.411582202,0,0.452479333,0)
b.Size=UDim2.new(0,171,0,45)
b.Active=true
b.Draggable=true
c.Parent=b
c.BackgroundColor3=Color3.fromRGB(255,255,255)
c.BorderSizePixel=0
c.Position=UDim2.new(-0.00110068521,0,-0.0172634553,0)
c.Size=UDim2.new(0,171,0,1)
d.Parent=b
d.BackgroundColor3=Color3.fromRGB(80,80,80)
d.BorderSizePixel=0
d.Position=UDim2.new(-0.00110068521,0,-0.507162452,0)
d.Size=UDim2.new(0,171,0,22)
e.Parent=d
e.BackgroundTransparency=1
e.Size=UDim2.new(0,171,0,22)
e.Font=Enum.Font.GothamBold
e.Text="Catching"
e.TextColor3=Color3.fromRGB(255,255,255)
e.TextSize=14
f.Parent=b
f.BackgroundTransparency=1
f.Size=UDim2.new(0,171,0,45)
g.Parent=f
g.BackgroundTransparency=1
g.Position=UDim2.new(0.023391813,0,0,0)
g.Size=UDim2.new(0,33,0,20)
g.Font=Enum.Font.Gotham
g.Text="Mags"
g.TextColor3=Color3.fromRGB(255,255,255)
g.TextSize=14
g.TextXAlignment=Enum.TextXAlignment.Left
h.Parent=f
h.BackgroundColor3=Color3.fromRGB(0,0,0)
h.BorderSizePixel=0
h.Position=UDim2.new(0.0216233991,0,0.444444448,0)
h.Size=UDim2.new(0,163,0,18)
i.Parent=h
i.BackgroundColor3=Color3.fromRGB(80,80,80)
i.BorderSizePixel=0
i.Size=UDim2.new(0,163,0,18)
j.Parent=h
j.BackgroundTransparency=1
j.Size=UDim2.new(0,163,0,18)
j.Font=Enum.Font.Gotham
j.Text="20"
j.TextColor3=Color3.fromRGB(255,255,255)
j.TextSize=14
k.Parent=f
k.BackgroundTransparency=1
k.Position=UDim2.new(0.828220844,0,0,0)
k.Size=UDim2.new(0,28,0,20)
k.Font=Enum.Font.Gotham
k.Text="OFF"
k.TextColor3=Color3.fromRGB(255,0,0)
k.TextSize=14
k.TextXAlignment=Enum.TextXAlignment.Right
task.spawn(function()
while true do
for x=0,1,0.01 do
c.BackgroundColor3=Color3.fromHSV(x,1,1)
task.wait(0.05)
end
end
end)
local u=game:GetService("UserInputService")
local m=false
local v=20
local n=5
local o=20
local p
local function q(pos)
local x=pos.X-h.AbsolutePosition.X
local y=math.clamp(x,0,h.AbsoluteSize.X)
i.Size=UDim2.new(0,y,0,h.AbsoluteSize.Y)
v=math.floor(n+(o-n)*(y/h.AbsoluteSize.X)+0.5)
j.Text=tostring(v)
end
j.Text=tostring(v)
h.InputBegan:Connect(function(r)
if r.UserInputType==Enum.UserInputType.MouseButton1 then
m=true
q(r.Position)
end
end)
h.InputEnded:Connect(function(r)
if r.UserInputType==Enum.UserInputType.MouseButton1 then
m=false
end
end)
u.InputChanged:Connect(function(r)
if m and r.UserInputType==Enum.UserInputType.MouseMovement then
q(r.Position)
end
end)
k.Activated:Connect(function()
if k.Text=="OFF" then
k.Text="ON"
k.TextColor3=Color3.fromRGB(0,255,127)
p=workspace.ChildAdded:Connect(function(s)
if s:IsA("Part") and s.Name=="Football" then
s.Size=s.Size*v
s.CanCollide=false
end
end)
else
k.Text="OFF"
k.TextColor3=Color3.fromRGB(255,0,0)
if p then p:Disconnect() p=nil end
end
end)
Comments
No comments yet
Be the first to share your thoughts!