local OrionLib = loadstring(game:HttpGet(('https://raw.githubusercontent.com/shlexware/Orion/main/source')))() local Window = OrionLib:MakeWindow({Name = "Sallyhub", HidePremium = false, SaveConfig = true, ConfigFolder = "OrionTest"}) local Tab = Window:MakeTab({ Name = "Teleport", Icon = "rbxassetid://4483345998", PremiumOnly = false }) local Section = Tab:AddSection({ Name = "Teleport" }) Tab:AddButton({ Name = "House", Callback = function() game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-186.039856, 34.047493, 156.232147, -0.533622205, -1.84208993e-09, -0.845722973, 5.73799923e-08, 1, -3.83829324e-08, 0.845722973, -6.90095661e-08, -0.533622205) end }) Tab:AddButton({ Name = "House 2", Callback = function() game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(435.557617, 22.1289825, 179.133926, 0.961292684, 2.07087858e-08, -0.275529355, -2.39213307e-08, 1, -8.2989855e-09, 0.275529355, 1.45687826e-08, 0.961292684) end }) Tab:AddButton({ Name = "House 3", Callback = function() game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-188.935928, 34.047493, 156.09903, 0.935477316, 7.75538069e-08, -0.35338676, -4.09274357e-08, 1, 1.11116563e-07, 0.35338676, -8.94838053e-08, 0.935477316) end }) Tab:AddButton({ Name = "power generator", Callback = function() game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(432.124146, 18.2499924, 538.492615, -0.815320313, 1.03019296e-07, -0.579010189, 1.04595088e-07, 1, 3.06398675e-08, 0.579010189, -3.55803174e-08, -0.815320313) end }) Tab:AddButton({ Name = "Shop", Callback = function() game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-299.51474, 35.7802887, 27.4366093, 0.871184707, -2.94290174e-08, 0.490955412, -1.80425541e-08, 1, 9.19582774e-08, -0.490955412, -8.89707366e-08, 0.871184707) end }) local Tab = Window:MakeTab({ Name = "Esp", Icon = "rbxassetid://4483345998", PremiumOnly = false }) local Section = Tab:AddSection({ Name = "Esp" }) Tab:AddButton({ Name = "Kira", Callback = function() -- Services local Players = game:GetService("Players") local Workspace = game:GetService("Workspace") local player = Players.LocalPlayer local kira = Workspace:FindFirstChild("Kira") if not kira then warn("The character 'Kira' was not found in the Workspace!") return end local kiraHumanoidRootPart = kira:FindFirstChild("HumanoidRootPart") if not kiraHumanoidRootPart then warn("'Kira' does not have a HumanoidRootPart!") return end local highlight = Instance.new("Highlight") highlight.Adornee = kira highlight.Parent = kira highlight.FillColor = Color3.fromRGB(255, 0, 0) -- Red color highlight.OutlineColor = Color3.fromRGB(255, 255, 255) -- White border highlight.DepthMode = Enum.HighlightDepthMode.AlwaysOnTop end }) Tab:AddButton({ Name = "Players", Callback = function() local Players = game:GetService("Players") local RunService = game:GetService("RunService") function addHighlight(player) if player ~= Players.LocalPlayer then local character = player.Character or player.CharacterAdded:Wait() local highlight = Instance.new("Highlight") highlight.Adornee = character highlight.Parent = character highlight.FillColor = Color3.fromRGB(0, 255, 0) -- Cor verde highlight.OutlineColor = Color3.fromRGB(255, 255, 255) -- Borda branca highlight.DepthMode = Enum.HighlightDepthMode.AlwaysOnTop end end function removeHighlight(player) local character = player.Character if character then local highlight = character:FindFirstChildWhichIsA("Highlight") if highlight then highlight:Destroy() end end end Players.PlayerAdded:Connect(function(player) player.CharacterAdded:Connect(function() addHighlight(player) end) end) Players.PlayerRemoving:Connect(function(player) removeHighlight(player) end) for _, player in pairs(Players:GetPlayers()) do if player ~= Players.LocalPlayer then if player.Character then addHighlight(player) end player.CharacterAdded:Connect(function() addHighlight(player) end) end end end })