Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Roblox user: leticia2009ffg1
- -- Instances:
- local Scouter = Instance.new("ScreenGui")
- local Main = Instance.new("Frame")
- local PlrList = Instance.new("ScrollingFrame")
- local UIGridLayout = Instance.new("UIGridLayout")
- local ScouterName = Instance.new("TextLabel")
- local ShowHideBtn = Instance.new("TextButton")
- --Properties:
- Scouter.Name = "Scouter"
- Scouter.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
- Scouter.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
- Main.Name = "Main"
- Main.Parent = Scouter
- Main.BackgroundColor3 = Color3.new(0.27451, 0.27451, 0.27451)
- Main.BackgroundTransparency = 0.20000000298023
- Main.BorderSizePixel = 0
- Main.Position = UDim2.new(0.890999973, 0, 0.273999989, 0)
- Main.Size = UDim2.new(0.108000003, 0, 0.5, 0)
- PlrList.Name = "PlrList"
- PlrList.Parent = Main
- PlrList.BackgroundColor3 = Color3.new(1, 1, 1)
- PlrList.BackgroundTransparency = 1
- PlrList.BorderSizePixel = 0
- PlrList.Position = UDim2.new(0, 0, 0.0834355801, 0)
- PlrList.Size = UDim2.new(1, 0, 0.916564405, 0)
- UIGridLayout.Parent = PlrList
- UIGridLayout.CellPadding = UDim2.new(0, 0, 0, 15)
- UIGridLayout.CellSize = UDim2.new(0.899999976, 0, 0.0700000003, 0)
- ScouterName.Name = "ScouterName"
- ScouterName.Parent = Main
- ScouterName.BackgroundColor3 = Color3.new(1, 1, 1)
- ScouterName.BackgroundTransparency = 0.89999997615814
- ScouterName.BorderSizePixel = 0
- ScouterName.Position = UDim2.new(-0.0038191122, 0, 0, 0)
- ScouterName.Size = UDim2.new(0, 138, 0, 34)
- ScouterName.Font = Enum.Font.SourceSans
- ScouterName.Text = "Scouter"
- ScouterName.TextColor3 = Color3.new(1, 1, 1)
- ScouterName.TextScaled = true
- ScouterName.TextSize = 14
- ScouterName.TextWrapped = true
- ShowHideBtn.Name = "ShowHideBtn"
- ShowHideBtn.Parent = Scouter
- ShowHideBtn.BackgroundColor3 = Color3.new(0.27451, 0.27451, 0.27451)
- ShowHideBtn.BackgroundTransparency = 0.20000000298023
- ShowHideBtn.BorderSizePixel = 0
- ShowHideBtn.Position = UDim2.new(0.947193146, 0, 0.240490824, 0)
- ShowHideBtn.Size = UDim2.new(0.05078125, 0, 0.0322822444, 0)
- ShowHideBtn.Font = Enum.Font.SourceSans
- ShowHideBtn.Text = "Show/Hide"
- ShowHideBtn.TextColor3 = Color3.new(1, 1, 1)
- ShowHideBtn.TextScaled = true
- ShowHideBtn.TextSize = 14
- ShowHideBtn.TextWrapped = true
- -- Scripts:
- function SCRIPT_BDDW75_FAKESCRIPT() -- PlrList.LocalScript
- local script = Instance.new('LocalScript')
- script.Parent = PlrList
- for _,c in pairs(game.Players:GetChildren()) do
- local TextButton = Instance.new("TextButton")
- TextButton.Parent = script.Parent
- TextButton.BackgroundColor3 = Color3.new(0, 0, 0)
- TextButton.BackgroundTransparency = 0.69999998807907
- TextButton.BorderSizePixel = 0
- TextButton.Size = UDim2.new(0, 200, 0, 50)
- TextButton.Font = Enum.Font.Fantasy
- TextButton.TextColor3 = Color3.new(1, 1, 1)
- TextButton.TextScaled = true
- TextButton.TextSize = 14
- TextButton.TextWrapped = true
- TextButton.Text = c.Name
- TextButton.Name = c.Name
- local Delete = Instance.new("TextButton")
- --Properties:
- Delete.Name = "Delete"
- Delete.Parent = TextButton
- Delete.BackgroundColor3 = Color3.new(1, 0, 0)
- Delete.BackgroundTransparency = 0.5
- Delete.Position = UDim2.new(0, 0, 1.00000024, 0)
- Delete.Size = UDim2.new(1, 0, 0.260736138, 0)
- Delete.Font = Enum.Font.SourceSans
- Delete.Text = "X"
- Delete.TextColor3 = Color3.new(0, 0, 0)
- Delete.TextScaled = true
- Delete.TextSize = 14
- Delete.TextWrapped = true
- -- Scripts:
- function SCRIPT_UZFC81_FAKESCRIPT() -- Delete.LocalScript
- local script = Instance.new('LocalScript')
- script.Parent = Delete
- script.Parent.MouseButton1Click:Connect(function()
- game.Players[script.Parent.Parent.Text].Character.Head.BillboardGui:remove()
- end)
- end
- coroutine.resume(coroutine.create(SCRIPT_UZFC81_FAKESCRIPT))
- TextButton.MouseButton1Click:connect(function()
- local BillboardGui = Instance.new("BillboardGui")
- local Main = Instance.new("Frame")
- local PlrName = Instance.new("TextLabel")
- local Stats = Instance.new("Frame")
- local Strength = Instance.new("TextLabel")
- local Speed = Instance.new("TextLabel")
- local Ki = Instance.new("TextLabel")
- local Rebirth = Instance.new("TextLabel")
- local PowerLevel = Instance.new("TextLabel")
- local Limit = Instance.new("TextLabel")
- local Endurance = Instance.new("TextLabel")
- local Topwins = Instance.new("TextLabel")
- --Properties:
- BillboardGui.Parent = game.Workspace[c.Name].Head
- BillboardGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
- BillboardGui.Active = true
- BillboardGui.LightInfluence = 1
- BillboardGui.Size = UDim2.new(5, 0, 5, 0)
- BillboardGui.StudsOffset = Vector3.new(0, 4, 0)
- Main.Name = "Main"
- Main.Parent = BillboardGui
- Main.BackgroundColor3 = Color3.new(0.215686, 0.215686, 0.215686)
- Main.Size = UDim2.new(2, 0, 1, 0)
- PlrName.Name = "PlrName"
- PlrName.Parent = Main
- PlrName.BackgroundColor3 = Color3.new(1, 1, 1)
- PlrName.BackgroundTransparency = 1
- PlrName.Size = UDim2.new(1, 0, 0.0799999982, 0)
- PlrName.Font = Enum.Font.SourceSans
- PlrName.Text = "PlrName"
- PlrName.TextColor3 = Color3.new(1, 1, 1)
- PlrName.TextScaled = true
- PlrName.TextSize = 14
- PlrName.TextWrapped = true
- Stats.Name = "Stats"
- Stats.Parent = Main
- Stats.BackgroundColor3 = Color3.new(1, 1, 1)
- Stats.BackgroundTransparency = 1
- Stats.Position = UDim2.new(0, 0, 0.0871165618, 0)
- Stats.Size = UDim2.new(1, 0, 0.912883461, 0)
- Strength.Name = "Strength"
- Strength.Parent = Stats
- Strength.BackgroundColor3 = Color3.new(1, 1, 1)
- Strength.BackgroundTransparency = 1
- Strength.Position = UDim2.new(0, 0, 0.0604838803, 3)
- Strength.Size = UDim2.new(1, 0, 0.150748894, 0)
- Strength.Font = Enum.Font.SourceSans
- Strength.Text = "Strength:"
- Strength.TextColor3 = Color3.new(1, 0, 0)
- Strength.TextScaled = true
- Strength.TextSize = 14
- Strength.TextWrapped = true
- Endurance.Name = "Endurance"
- Endurance.Parent = Stats
- Endurance.BackgroundColor3 = Color3.new(1, 1, 1)
- Endurance.BackgroundTransparency = 1
- Endurance.Position = UDim2.new(0, 0, 0.0604838803, -15)
- Endurance.Size = UDim2.new(1, 0, 0.150748894, 0)
- Endurance.Font = Enum.Font.SourceSans
- Endurance.Text = "Endurance:"
- Endurance.TextColor3 = Color3.new(1, 0, 0)
- Endurance.TextScaled = true
- Endurance.TextSize = 14
- Endurance.TextWrapped = true
- Speed.Name = "Speed"
- Speed.Parent = Stats
- Speed.BackgroundColor3 = Color3.new(1, 1, 1)
- Speed.BackgroundTransparency = 1
- Speed.Position = UDim2.new(0, 0, 0.258589298, -10)
- Speed.Size = UDim2.new(1, 0, 0.150748894, 0)
- Speed.Font = Enum.Font.SourceSans
- Speed.Text = "Speed:"
- Speed.TextColor3 = Color3.new(0.333333, 1, 0)
- Speed.TextScaled = true
- Speed.TextSize = 14
- Speed.TextWrapped = true
- Ki.Name = "Ki"
- Ki.Parent = Stats
- Ki.BackgroundColor3 = Color3.new(1, 1, 1)
- Ki.BackgroundTransparency = 1
- Ki.Position = UDim2.new(0, 0, 0.457948744, -23)
- Ki.Size = UDim2.new(1, 0, 0.150748894, 0)
- Ki.Font = Enum.Font.SourceSans
- Ki.Text = "Ki:"
- Ki.TextColor3 = Color3.new(0, 1, 1)
- Ki.TextScaled = true
- Ki.TextSize = 14
- Ki.TextWrapped = true
- Rebirth.Name = "Rebirth"
- Rebirth.Parent = Stats
- Rebirth.BackgroundColor3 = Color3.new(1, 1, 1)
- Rebirth.BackgroundTransparency = 1
- Rebirth.Position = UDim2.new(0, 0, 0.671151936, -40)
- Rebirth.Size = UDim2.new(1, 0, 0.150748894, 0)
- Rebirth.Font = Enum.Font.SourceSans
- Rebirth.Text = "Rebirth:"
- Rebirth.TextColor3 = Color3.new(1, 1, 0)
- Rebirth.TextScaled = true
- Rebirth.TextSize = 14
- Rebirth.TextWrapped = true
- PowerLevel.Name = "PowerLevel"
- PowerLevel.Parent = Stats
- PowerLevel.BackgroundColor3 = Color3.new(1, 1, 1)
- PowerLevel.BackgroundTransparency = 1
- PowerLevel.Position = UDim2.new(0, 0, 0.858717859, -50)
- PowerLevel.Size = UDim2.new(1, 0, 0.141282082, 0)
- PowerLevel.Font = Enum.Font.SourceSans
- PowerLevel.Text = "PowerLevel:"
- PowerLevel.TextColor3 = Color3.new(0, 0.333333, 1)
- PowerLevel.TextScaled = true
- PowerLevel.TextSize = 14
- PowerLevel.TextWrapped = true
- Limit.Name = "Limit"
- Limit.Parent = Stats
- Limit.BackgroundColor3 = Color3.new(1, 1, 1)
- Limit.BackgroundTransparency = 1
- Limit.Position = UDim2.new(0, 0, 0.858717859, -30)
- Limit.Size = UDim2.new(1, 0, 0.141282082, 0)
- Limit.Font = Enum.Font.SourceSans
- Limit.Text = "Limit:"
- Limit.TextColor3 = Color3.new(0, 0.333333, 1)
- Limit.TextScaled = true
- Limit.TextSize = 14
- Limit.TextWrapped = true
- Topwins.Name = "Topwins"
- Topwins.Parent = Stats
- Topwins.BackgroundColor3 = Color3.new(1, 1, 1)
- Topwins.BackgroundTransparency = 1
- Topwins.Position = UDim2.new(0, 0, 0.858717859, -10)
- Topwins.Size = UDim2.new(1, 0, 0.141282082, 0)
- Topwins.Font = Enum.Font.SourceSans
- Topwins.Text = "Top Wins:"
- Topwins.TextColor3 = Color3.new(0, 0.333333, 1)
- Topwins.TextScaled = true
- Topwins.TextSize = 14
- Topwins.TextWrapped = true
- -- Scripts:
- local function SCRIPT_YUKB80_FAKESCRIPT() -- Main.Script
- local script = Instance.new('Script')
- script.Parent = Main
- local playername = script.Parent.Parent.Parent.Parent.Name
- local Datas = game.ReplicatedStorage.Datas
- script.Parent.PlrName.Text = script.Parent.Parent.Parent.Parent.Name
- while wait() do
- can = game.Players[c.Name].Character
- script.Parent.Stats.Strength.Text = "Strength: "..Datas[playername].Strength.Value
- script.Parent.Stats.Speed.Text = "Speed: "..Datas[playername].Speed.Value
- script.Parent.Stats.Ki.Text = "Ki: "..Datas[playername].Ki.Value
- script.Parent.Stats.Rebirth.Text = "Rebirth: "..Datas[playername].Rebirth.Value
- script.Parent.Stats.PowerLevel.Text = "PowerLevel: "..((Datas[playername].Rebirth.Value/10*Datas[playername].Strength.Value+Datas[playername].Strength.Value) *can.Humanoid.Health/100)
- script.Parent.Stats.Endurance.Text = "Endurance: "..tostring(math.floor(can.Humanoid.Health).."/"..(can.Humanoid.MaxHealth))
- script.Parent.Stats.Limit.Text = "2x Exp Boost: "..Datas[playername].Limit.Value
- script.Parent.Stats.Topwins.Text = "Top Wins: "..Datas[playername].PowerLevel.Value
- end
- end
- coroutine.resume(coroutine.create(SCRIPT_YUKB80_FAKESCRIPT))
- end)
- end
- game.Players.ChildAdded:Connect(function(inst)
- local TextButton2 = Instance.new("TextButton")
- TextButton2.Parent = script.Parent
- TextButton2.BackgroundColor3 = Color3.new(0, 0, 0)
- TextButton2.BackgroundTransparency = 0.69999998807907
- TextButton2.BorderSizePixel = 0
- TextButton2.Size = UDim2.new(0, 200, 0, 50)
- TextButton2.Font = Enum.Font.Fantasy
- TextButton2.TextColor3 = Color3.new(1, 1, 1)
- TextButton2.TextScaled = true
- TextButton2.TextSize = 14
- TextButton2.TextWrapped = true
- TextButton2.Text = inst.Name
- TextButton2.Name = inst.Name
- local Delete = Instance.new("TextButton")
- --Properties:
- Delete.Name = "Delete"
- Delete.Parent = TextButton2
- Delete.BackgroundColor3 = Color3.new(1, 0, 0)
- Delete.BackgroundTransparency = 0.5
- Delete.Position = UDim2.new(0, 0, 1.00000024, 0)
- Delete.Size = UDim2.new(1, 0, 0.260736138, 0)
- Delete.Font = Enum.Font.SourceSans
- Delete.Text = "X"
- Delete.TextColor3 = Color3.new(0, 0, 0)
- Delete.TextScaled = true
- Delete.TextSize = 14
- Delete.TextWrapped = true
- -- Scripts:
- function SCRIPT_UZFC81_FAKESCRIPT() -- Delete.LocalScript
- local script = Instance.new('LocalScript')
- script.Parent = Delete
- script.Parent.MouseButton1Click:Connect(function()
- game.Players[script.Parent.Parent.Text].Character.Head.BillboardGui:remove()
- end)
- end
- coroutine.resume(coroutine.create(SCRIPT_UZFC81_FAKESCRIPT))
- TextButton2.MouseButton1Click:connect(function()
- local BillboardGui = Instance.new("BillboardGui")
- local Main = Instance.new("Frame")
- local PlrName = Instance.new("TextLabel")
- local Stats = Instance.new("Frame")
- local Strength = Instance.new("TextLabel")
- local Speed = Instance.new("TextLabel")
- local Ki = Instance.new("TextLabel")
- local Rebirth = Instance.new("TextLabel")
- local PowerLevel = Instance.new("TextLabel")
- --Properties:
- BillboardGui.Parent = game.Workspace[inst.Name].Head
- BillboardGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
- BillboardGui.Active = true
- BillboardGui.LightInfluence = 1
- BillboardGui.Size = UDim2.new(5, 0, 5, 0)
- BillboardGui.StudsOffset = Vector3.new(0, 4, 0)
- Main.Name = "Main"
- Main.Parent = BillboardGui
- Main.BackgroundColor3 = Color3.new(0.215686, 0.215686, 0.215686)
- Main.BackgroundTransparency = 0.5
- Main.Size = UDim2.new(1, 0, 1, 0)
- PlrName.Name = "PlrName"
- PlrName.Parent = Main
- PlrName.BackgroundColor3 = Color3.new(1, 1, 1)
- PlrName.BackgroundTransparency = 1
- PlrName.Size = UDim2.new(1, 0, 0.0799999982, 0)
- PlrName.Font = Enum.Font.SourceSans
- PlrName.Text = "PlrName"
- PlrName.TextColor3 = Color3.new(1, 1, 1)
- PlrName.TextScaled = true
- PlrName.TextSize = 14
- PlrName.TextWrapped = true
- Stats.Name = "Stats"
- Stats.Parent = Main
- Stats.BackgroundColor3 = Color3.new(1, 1, 1)
- Stats.BackgroundTransparency = 1
- Stats.Position = UDim2.new(0, 0, 0.0871165618, 0)
- Stats.Size = UDim2.new(1, 0, 0.912883461, 0)
- Strength.Name = "Strength"
- Strength.Parent = Stats
- Strength.BackgroundColor3 = Color3.new(1, 1, 1)
- Strength.BackgroundTransparency = 1
- Strength.Position = UDim2.new(0, 0, 0.0604838803, 3)
- Strength.Size = UDim2.new(1, 0, 0.150748894, 0)
- Strength.Font = Enum.Font.SourceSans
- Strength.Text = "Strength:"
- Strength.TextColor3 = Color3.new(1, 0, 0)
- Strength.TextScaled = true
- Strength.TextSize = 14
- Strength.TextWrapped = true
- Speed.Name = "Speed"
- Speed.Parent = Stats
- Speed.BackgroundColor3 = Color3.new(1, 1, 1)
- Speed.BackgroundTransparency = 1
- Speed.Position = UDim2.new(0, 0, 0.258589298, -10)
- Speed.Size = UDim2.new(1, 0, 0.150748894, 0)
- Speed.Font = Enum.Font.SourceSans
- Speed.Text = "Speed:"
- Speed.TextColor3 = Color3.new(0.333333, 1, 0)
- Speed.TextScaled = true
- Speed.TextSize = 14
- Speed.TextWrapped = true
- Ki.Name = "Ki"
- Ki.Parent = Stats
- Ki.BackgroundColor3 = Color3.new(1, 1, 1)
- Ki.BackgroundTransparency = 1
- Ki.Position = UDim2.new(0, 0, 0.457948744, -23)
- Ki.Size = UDim2.new(1, 0, 0.150748894, 0)
- Ki.Font = Enum.Font.SourceSans
- Ki.Text = "Ki:"
- Ki.TextColor3 = Color3.new(0, 1, 1)
- Ki.TextScaled = true
- Ki.TextSize = 14
- Ki.TextWrapped = true
- Rebirth.Name = "Rebirth"
- Rebirth.Parent = Stats
- Rebirth.BackgroundColor3 = Color3.new(1, 1, 1)
- Rebirth.BackgroundTransparency = 1
- Rebirth.Position = UDim2.new(0, 0, 0.671151936, -40)
- Rebirth.Size = UDim2.new(1, 0, 0.150748894, 0)
- Rebirth.Font = Enum.Font.SourceSans
- Rebirth.Text = "Rebirth:"
- Rebirth.TextColor3 = Color3.new(1, 1, 0)
- Rebirth.TextScaled = true
- Rebirth.TextSize = 14
- Rebirth.TextWrapped = true
- Endurance.Name = "Endurance"
- Endurance.Parent = Stats
- Endurance.BackgroundColor3 = Color3.new(1, 1, 1)
- Endurance.BackgroundTransparency = 1
- Endurance.Position = UDim2.new(0, 0, 0.0604838803, -15)
- Endurance.Size = UDim2.new(1, 0, 0.150748894, 0)
- Endurance.Font = Enum.Font.SourceSans
- Endurance.Text = "Endurance:"
- Endurance.TextColor3 = Color3.new(1, 0, 0)
- Endurance.TextScaled = true
- Endurance.TextSize = 14
- Endurance.TextWrapped = true
- PowerLevel.Name = "PowerLevel"
- PowerLevel.Parent = Stats
- PowerLevel.BackgroundColor3 = Color3.new(1, 1, 1)
- PowerLevel.BackgroundTransparency = 1
- PowerLevel.Position = UDim2.new(0, 0, 0.858717859, -50)
- PowerLevel.Size = UDim2.new(1, 0, 0.141282082, 0)
- PowerLevel.Font = Enum.Font.SourceSans
- PowerLevel.Text = "PowerLevel:"
- PowerLevel.TextColor3 = Color3.new(0, 0.333333, 1)
- PowerLevel.TextScaled = true
- PowerLevel.TextSize = 14
- PowerLevel.TextWrapped = true
- Limit.Name = "Limit"
- Limit.Parent = Stats
- Limit.BackgroundColor3 = Color3.new(1, 1, 1)
- Limit.BackgroundTransparency = 1
- Limit.Position = UDim2.new(0, 0, 0.858717859, -30)
- Limit.Size = UDim2.new(1, 0, 0.141282082, 0)
- Limit.Font = Enum.Font.SourceSans
- Limit.Text = "Limit:"
- Limit.TextColor3 = Color3.new(0, 0.333333, 1)
- Limit.TextScaled = true
- Limit.TextSize = 14
- Limit.TextWrapped = true
- Topwins.Name = "Topwins"
- Topwins.Parent = Stats
- Topwins.BackgroundColor3 = Color3.new(1, 1, 1)
- Topwins.BackgroundTransparency = 1
- Topwins.Position = UDim2.new(0, 0, 0.858717859, -10)
- Topwins.Size = UDim2.new(1, 0, 0.141282082, 0)
- Topwins.Font = Enum.Font.SourceSans
- Topwins.Text = "Top Wins:"
- Topwins.TextColor3 = Color3.new(0, 0.333333, 1)
- Topwins.TextScaled = true
- Topwins.TextSize = 14
- Topwins.TextWrapped = true
- -- Scripts:
- local function SCRIPT_YUKB80_FAKESCRIPT() -- Main.Script
- local script = Instance.new('Script')
- script.Parent = Main
- local playername = script.Parent.Parent.Parent.Parent.Name
- local Datas = game.ReplicatedStorage.Datas
- script.Parent.PlrName.Text = script.Parent.Parent.Parent.Parent.Name
- while wait() do
- can = game.Players[c.Name].Character
- script.Parent.Stats.Strength.Text = "Strength: "..Datas[playername].Strength.Value
- script.Parent.Stats.Speed.Text = "Speed: "..Datas[playername].Speed.Value
- script.Parent.Stats.Ki.Text = "Ki: "..Datas[playername].Ki.Value
- script.Parent.Stats.Rebirth.Text = "Rebirth: "..Datas[playername].Rebirth.Value
- script.Parent.Stats.PowerLevel.Text = "PowerLevel: "..((Datas[playername].Rebirth.Value/10*Datas[playername].Strength.Value+Datas[playername].Strength.Value) *can.Humanoid.Health/100)
- script.Parent.Stats.Endurance.Text = "Endurance: "..tostring(math.floor(can.Humanoid.Health).."/"..(can.Humanoid.MaxHealth))
- script.Parent.Stats.Limit.Text = "2x Exp Boost: "..Datas[playername].Limit.Value
- script.Parent.Stats.Topwins.Text = "Top Wins: "..Datas[playername].PowerLevel.Value
- end
- end
- coroutine.resume(coroutine.create(SCRIPT_YUKB80_FAKESCRIPT))
- end)
- end)
- game.Players.ChildRemoved:Connect(function(insta)
- script.Parent[insta.Name]:Remove()
- end)
- end
- coroutine.resume(coroutine.create(SCRIPT_BDDW75_FAKESCRIPT))
- function SCRIPT_KYXM75_FAKESCRIPT() -- ShowHideBtn.LocalScript
- local script = Instance.new('LocalScript')
- script.Parent = ShowHideBtn
- script.Parent.MouseButton1Click:Connect(function()
- script.Parent.Parent.Main.Visible = not script.Parent.Parent.Main.Visible
- end)
- end
- coroutine.resume(coroutine.create(SCRIPT_KYXM75_FAKESCRIPT))
Advertisement
Add Comment
Please, Sign In to add comment