-- Objects local ScreenGui = Instance.new("ScreenGui") local TextButton = Instance.new("TextLabel") local TextButton_2 = Instance.new("TextButton") local TextButton_3 = Instance.new("TextButton") local BT = Instance.new("TextLabel") -- Properties ScreenGui.Parent = game.CoreGui TextButton.Parent = ScreenGui TextButton.BackgroundColor3 = Color3.new(0.180392, 0.176471, 0.2) TextButton.BorderColor3 = Color3.new(0.180392, 0.176471, 0.2) TextButton.Position = UDim2.new(0, -300, 0, 259) TextButton.Size = UDim2.new(0, 280, 0, 53) TextButton.Font = Enum.Font.SourceSans TextButton.Text = "Mohammadyas just dropped 1.000" TextButton.TextColor3 = Color3.new(1, 1, 1) TextButton.TextSize = 22 TextButton.TextWrapped = true TextButton.TextXAlignment = Enum.TextXAlignment.Left TextButton.TextYAlignment = Enum.TextYAlignment.Top TextButton_2.Parent = TextButton TextButton_2.BackgroundColor3 = Color3.new(0.94902, 0.235294, 0.894118) TextButton_2.BorderColor3 = Color3.new(0.94902, 0.235294, 0.894118) TextButton_2.Position = UDim2.new(0, 0, 0.56461823, 0) TextButton_2.Size = UDim2.new(0, 280, 0, 23) TextButton_2.Font = Enum.Font.SourceSans TextButton_2.Text = "Teleport Money" TextButton_2.TextColor3 = Color3.new(1, 1, 1) TextButton_2.TextSize = 28 TextButton_2.TextWrapped = true TextButton_2.MouseButton1Click:connect(function() game:GetService('Players').LocalPlayer.Character.HumanoidRootPart.CFrame = game.Workspace.DroppedCash.Cash.Part.CFrame end) BT.Name = "BT" BT.Parent = ScreenGui BT.BackgroundColor3 = Color3.new(0.180392, 0.176471, 0.2) BT.BorderColor3 = Color3.new(0.180392, 0.176471, 0.2) BT.Position = UDim2.new(0, -300, 0, 194) BT.Size = UDim2.new(0, 280, 0, 53) BT.Font = Enum.Font.SourceSans BT.Text = "Top Most Bounty is 2000" BT.TextColor3 = Color3.new(1, 1, 1) BT.TextSize = 22 BT.TextWrapped = true BT.TextXAlignment = Enum.TextXAlignment.Left BT.TextYAlignment = Enum.TextYAlignment.Top TextButton_3.Parent = BT TextButton_3.BackgroundColor3 = Color3.new(0.94902, 0.235294, 0.894118) TextButton_3.BorderColor3 = Color3.new(0.94902, 0.235294, 0.894118) TextButton_3.Position = UDim2.new(0, 0, 0.56461823, 0) TextButton_3.Size = UDim2.new(0, 280, 0, 23) TextButton_3.Font = Enum.Font.SourceSans TextButton_3.Text = "Goto Player" TextButton_3.TextColor3 = Color3.new(1, 1, 1) TextButton_3.TextSize = 28 TextButton_3.TextWrapped = true TextButton_3.MouseButton1Click:connect(function() if game.Workspace.MostWanted.MostWanted.Background.MostWanted.Board:FindFirstChild('Preset') then game:GetService('Players').LocalPlayer.Character.HumanoidRootPart.CFrame = game:GetService('Players')[game.Workspace.MostWanted.MostWanted.Background.MostWanted.Board.Preset.Stats.PlayerName.Text].Character.HumanoidRootPart.CFrame end end) while wait() do if game.Workspace.MostWanted.MostWanted.Background.MostWanted.Board:FindFirstChild('Preset') then BT:TweenPosition(UDim2.new(0, 0,0, 200),"In","Quad") BT.Text = "Top Most Bounty is "..game.Workspace.MostWanted.MostWanted.Background.MostWanted.Board.Preset.Stats.Bounty.Text else BT:TweenPosition(UDim2.new(0, -300,0, 200),"In","Quad") end end