Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- [[ ===F.O.E=== Stat Tracker&Changer ]] --
- local p = game.Players.LocalPlayer
- print("===F.O.E=== Welcome, "..p.Name.." to the Stat Tracker&Changer ===F.O.E===")
- yourgay = true
- if yourgay == true then
- -- G U I
- local gui = Instance.new("ScreenGui",p.PlayerGui)
- gui.Name = "[[ ===F.O.E === ]]"
- -- F R A M E
- local frame = Instance.new("Frame",gui)
- frame.Name = "ST&C"
- frame.Position = UDim2.new(0.011,0,0.452,0)
- frame.Size = UDim2.new(0,119,0,179)
- frame.BackgroundColor3 = Color3.new(33,33,33)
- frame.Visible = true
- frame.Active = true
- frame.Draggable = true
- print("Frame-100%")
- -- T I T L E
- local title = Instance.new("TextLabel",frame)
- title.Name = "welcome young fellow"
- title.Position = UDim2.new(-0.118,0,-0.14,0)
- title.Size = UDim2.new(0,131,0,24)
- title.Visible = true
- title.Text = "[[ ===F.O.E=== ]]"
- title.TextScaled = true
- title.Font = 'Code'
- title.TextColor3 = Color3.new(170,0,0)
- title.BackgroundColor3 = Color3.new(0,0,0)
- print("Title-100%")
- -- W A L K - L A B E L
- local ws = Instance.new("TextLabel",frame)
- ws.Name = ".Health"
- ws.Position = UDim2.new(0,0,-0.002,0)
- ws.Size = UDim2.new(0,118,0,46)
- ws.Visible = true
- ws.TextScaled = true
- ws.Font = 'Code'
- ws.TextColor3 = Color3.new(170,0,0)
- ws.BackgroundColor3 = Color3.new(0,0,0)
- print("WL-100%")
- -- W A L K - P L U S
- local wp = Instance.new("TextButton",frame)
- wp.Name = "walkspeed"
- wp.Position = UDim2.new(0.992,0,0,0)
- wp.Size = UDim2.new(0,20,0,45)
- wp.Visible = true
- wp.Text = "+10"
- wp.TextScaled = true
- wp.Font = 'Code'
- wp.TextColor3 = Color3.new(0,0,0)
- wp.BackgroundColor3 = Color3.new(170,0,0)
- wp.MouseButton1Down:Connect(function()
- p.Character.Humanoid.WalkSpeed = p.Character.Humanoid.WalkSpeed + 10
- end)
- print("WP-100%")
- -- W A L K - M I N U S
- local wm = Instance.new("TextButton",frame)
- wm.Name = "walkspeed"
- wm.Position = UDim2.new(-0.118,0,0,0)
- wm.Size = UDim2.new(0,14,0,46)
- wm.Visible = true
- wm.Text = "-10"
- wm.TextScaled = true
- wm.Font = 'Code'
- wm.TextColor3 = Color3.new(0,0,0)
- wm.BackgroundColor3 = Color3.new(170,0,0)
- wm.MouseButton1Down:Connect(function()
- p.Character.Humanoid.WalkSpeed = p.Character.Humanoid.WalkSpeed - 10
- end)
- print("WM-100%")
- -- J U M P - L A B E L
- local jp = Instance.new("TextLabel",frame)
- jp.Name = "jumppower"
- jp.Position = UDim2.new(0,0,0.255,0)
- jp.Size = UDim2.new(0,118,0,46)
- jp.Visible = true
- jp.TextScaled = true
- jp.Font = 'Code'
- jp.TextColor3 = Color3.new(170,0,0)
- jp.BackgroundColor3 = Color3.new(0,0,0)
- print("JP-100%")
- -- J U M P - P L U S
- local ja = Instance.new("TextButton",frame)
- ja.Name = "jumppower"
- ja.Position = UDim2.new(0.992,0,0.257,0)
- ja.Size = UDim2.new(0,20,0,45)
- ja.Visible = true
- ja.Text = "+10"
- ja.TextScaled = true
- ja.Font = 'Code'
- ja.TextColor3 = Color3.new(0,0,0)
- ja.BackgroundColor3 = Color3.new(170,0,0)
- ja.MouseButton1Down:Connect(function()
- p.Character.Humanoid.JumpPower = p.Character.Humanoid.JumpPower + 10
- end)
- print("JA-100%")
- -- J U M P - M I N U S
- local jm = Instance.new("TextButton",frame)
- jm.Name = "jumppower"
- jm.Position = UDim2.new(-0.118,0,0.257,0)
- jm.Size = UDim2.new(0,14,0,45)
- jm.Visible = true
- jm.Text = "-10"
- jm.TextScaled = true
- jm.Font = 'Code'
- jm.TextColor3 = Color3.new(0,0,0)
- jm.BackgroundColor3 = Color3.new(170,0,0)
- jm.MouseButton1Down:Connect(function()
- p.Character.Humanoid.JumpPower = p.Character.Humanoid.JumpPower - 10
- end)
- print("JM-100% & Script-50%")
- -- H E A L T H - L A B E L
- local ha = Instance.new("TextLabel",frame)
- ha.Name = "health"
- ha.Position = UDim2.new(0,0,0.512,0)
- ha.Size = UDim2.new(0,118,0,46)
- ha.Visible = true
- ha.TextScaled = true
- ha.Font = 'Code'
- ha.TextColor3 = Color3.new(170,0,0)
- ha.BackgroundColor3 = Color3.new(0,0,0)
- print("HA-100%")
- -- H E A L T H - P L U S
- local hp = Instance.new("TextButton",frame)
- hp.Name = "health"
- hp.Position = UDim2.new(0.992,0,0.514,0)
- hp.Size = UDim2.new(0,20,0,45)
- hp.Visible = true
- hp.Text = "+10"
- hp.TextScaled = true
- hp.Font = 'Code'
- hp.TextColor3 = Color3.new(0,0,0)
- hp.BackgroundColor3 = Color3.new(170,0,0)
- hp.MouseButton1Down:Connect(function()
- p.Character.Humanoid.Health = p.Character.Humanoid.Health + 10
- end)
- print("HP-100%")
- -- H E A L T H - M I N U S
- local hm = Instance.new("TextButton",frame)
- hm.Name = "health"
- hm.Position = UDim2.new(-0.118,0,0.508,0)
- hm.Size = UDim2.new(0,14,0,47)
- hm.Visible = true
- hm.Text = "-10"
- hm.TextScaled = true
- hm.Font = 'Code'
- hm.TextColor3 = Color3.new(0,0,0)
- hm.BackgroundColor3 = Color3.new(170,0,0)
- hm.MouseButton1Down:Connect(function()
- p.Character.Humanoid.Health = p.Character.Humanoid.Health - 10
- end)
- print("HM-100%")
- -- M A X H E A L T H - L A B E L
- local mh = Instance.new("TextLabel",frame)
- mh.Name = "maxhealth"
- mh.Position = UDim2.new(0,0,0.769,0)
- mh.Size = UDim2.new(0,118,0,46)
- mh.Visible = true
- mh.TextScaled = true
- mh.Font = 'Code'
- mh.TextColor3 = Color3.new(170,0,0)
- mh.BackgroundColor3 = Color3.new(0,0,0)
- print("MH-100%")
- -- M A X H E A L T H - P L U S
- local mp = Instance.new("TextButton",frame)
- mp.Name = "maxhealth"
- mp.Position = UDim2.new(0.992,0,0.771,0)
- mp.Size = UDim2.new(0,20,0,45)
- mp.Visible = true
- mp.Text = "+10"
- mp.TextScaled = true
- mp.Font = 'Code'
- mp.TextColor3 = Color3.new(0,0,0)
- mp.BackgroundColor3 = Color3.new(170,0,0)
- mp.MouseButton1Down:Connect(function()
- p.Character.Humanoid.MaxHealth = p.Character.Humanoid.MaxHealth + 10
- end)
- print("MP-100%")
- -- M A X H E A L T H - M I N U S
- local mm = Instance.new("TextButton",frame)
- mm.Name = "maxhealth"
- mm.Position = UDim2.new(-0.118,0,0.771,0)
- mm.Size = UDim2.new(0,14,0,45)
- mm.Visible = true
- mm.Text = "-10"
- mm.TextScaled = true
- mm.Font = 'Code'
- mm.TextColor3 = Color3.new(0,0,0)
- mm.BackgroundColor3 = Color3.new(170,0,0)
- mm.MouseButton1Down:Connect(function()
- p.Character.Humanoid.MaxHealth = p.Character.Humanoid.MaxHealth - 10
- end)
- print("MM-100%")
- -- O P E N & C L O S E
- local open = Instance.new("TextButton",gui)
- local close = Instance.new("TextButton",frame)
- open.Name = "open;"
- open.Position = UDim2.new(0,0,0.77,0)
- open.Size = UDim2.new(0,26,0,15)
- open.Visible = false
- open.Text = "Open"
- open.TextScaled = true
- open.Font = 'Code'
- open.TextColor3 = Color3.new(170,0,0)
- open.BackgroundColor3 = Color3.new(0,0,0)
- open.MouseButton1Down:Connect(function()
- frame.Visible = true
- open.Visible = false
- end)
- close.Name = "aww, why?"
- close.Position = UDim2.new(0.992,0,-0.14,0)
- close.Size = UDim2.new(0,20,0,24)
- close.Visible = true
- close.Text = "X"
- close.TextScaled = true
- close.Font = 'Code'
- close.TextColor3 = Color3.new(0,0,0)
- close.BackgroundColor3 = Color3.new(170,0,0)
- close.MouseButton1Down:Connect(function()
- frame.Visible = false
- open.Visible = true
- end)
- while true do
- title.Text = "[[ ===F.O.E=== ]]"
- wait(0.2)
- title.Text = "Stat T & C"
- ws.Text = "WalkSpeed:"..p.Character.Humanoid.WalkSpeed
- jp.Text = "JumpPower:"..p.Character.Humanoid.JumpPower
- ha.Text = "Health:"..p.Character.Humanoid.Health
- mh.Text = "MaxHealth:"..p.Character.Humanoid.MaxHealth
- end
- print("[[ === F.O.E === ]]")
- print("Script-100%_completed")
- end
Advertisement
Add Comment
Please, Sign In to add comment