-- [[ Rscripts Risk Notice ]] -- This script is not verified by rscripts.net. Deal with caution. -- -- Stay safe: -- • Never log in on unofficial Roblox sites or lookalike domains. -- • Real Roblox links use roblox.com (check the .com ending). -- • Treat fake Roblox login / "claim reward" pages as phishing. -- [[ End Rscripts Risk Notice ]] local Players = game:GetService("Players") local ReplicatedStorage = game:GetService("ReplicatedStorage") local player = Players.LocalPlayer local ADMIN_ID = 123456789 if player.UserId ~= ADMIN_ID then return end local remote = ReplicatedStorage:WaitForChild("YunoAdminRemote") -- Loading screen local gui = Instance.new("ScreenGui") gui.Name = "YunoGod3Admin" gui.ResetOnSpawn = false gui.Parent = player:WaitForChild("PlayerGui") local loading = Instance.new("TextLabel") loading.Size = UDim2.new(1,0,1,0) loading.BackgroundColor3 = Color3.new(0,0,0) loading.TextColor3 = Color3.new(1,1,1) loading.TextScaled = true loading.Text = "yuno_god3's script\nLoading..." loading.Parent = gui task.wait(2) loading:Destroy() -- Main panel local panel = Instance.new("Frame") panel.Size = UDim2.new(0,280,0,360) panel.Position = UDim2.new(0.5,-140,0.5,-180) panel.BackgroundColor3 = Color3.fromRGB(25,25,25) panel.Parent = gui local title = Instance.new("TextLabel") title.Size = UDim2.new(1,0,0,45) title.Text = "yuno_god3's ADMIN" title.TextColor3 = Color3.new(1,1,1) title.TextScaled = true title.BackgroundTransparency = 1 title.Parent = panel -- Draggable panel local dragging = false local dragStart local startPos title.InputBegan:Connect(function(input) if input.UserInputType == Enum.UserInputType.MouseButton1 or input.UserInputType == Enum.UserInputType.Touch then dragging = true dragStart = input.Position startPos = panel.Position end end) title.InputEnded:Connect(function(input) if input.UserInputType == Enum.UserInputType.MouseButton1 or input.UserInputType == Enum.UserInputType.Touch then dragging = false end end) game:GetService("UserInputService").InputChanged:Connect(function(input) if dragging then local delta = input.Position - dragStart panel.Position = UDim2.new( startPos.X.Scale, startPos.X.Offset + delta.X, startPos.Y.Scale, startPos.Y.Offset + delta.Y ) end end) -- Speed local speed = 16 local speedBox = Instance.new("TextBox") speedBox.Size = UDim2.new(0.8,0,0,40) speedBox.Position = UDim2.new(0.1,0,0,60) speedBox.PlaceholderText = "Speed (16 default)" speedBox.Text = "" speedBox.TextScaled = true speedBox.Parent = panel local speedButton = Instance.new("TextButton") speedButton.Size = UDim2.new(0.8,0,0,40) speedButton.Position = UDim2.new(0.1,0,0,110) speedButton.Text = "SET SPEED" speedButton.TextScaled = true speedButton.Parent = panel speedButton.MouseButton1Click:Connect(function() local value = tonumber(speedBox.Text) if value then speed = math.clamp(value, 0, 100) local character = player.Character if character then local humanoid = character:FindFirstChildOfClass("Humanoid") if humanoid then humanoid.WalkSpeed = speed end end end end) -- ESP local espEnabled = false local espButton = Instance.new("TextButton") espButton.Size = UDim2.new(0.8,0,0,40) espButton.Position = UDim2.new(0.1,0,0,160) espButton.Text = "ESP: OFF" espButton.TextScaled = true espButton.Parent = panel local function addESP(plr) if plr == player then return end local char = plr.Character if not char then return end if char:FindFirstChild("YunoESP") then return end local highlight = Instance.new("Highlight") highlight.Name = "YunoESP" highlight.FillTransparency = 0.7 highlight.Parent = char local billboard = Instance.new("BillboardGui") billboard.Name = "YunoESP" billboard.Size = UDim2.new(0,200,0,40) billboard.StudsOffset = Vector3.new(0,3,0) billboard.AlwaysOnTop = true billboard.Parent = char:FindFirstChild("Head") or char local name = Instance.new("TextLabel") name.Size = UDim2.new(1,0,1,0) name.BackgroundTransparency = 1 name.Text = plr.Name name.TextColor3 = Color3.new(1,1,1) name.TextScaled = true name.Parent = billboard end local function removeESP() for _, plr in Players:GetPlayers() do if plr.Character then local a = plr.Character:FindFirstChild("YunoESP") if a then a:Destroy() end local head = plr.Character:FindFirstChild("Head") if head then local b = head:FindFirstChild("YunoESP") if b then b:Destroy() end end end end end espButton.MouseButton1Click:Connect(function() espEnabled = not espEnabled espButton.Text = espEnabled and "ESP: ON" or "ESP: OFF" if espEnabled then for _, plr in Players:GetPlayers() do addESP(plr) end else removeESP() end end) Players.PlayerAdded:Connect(function(plr) plr.CharacterAdded:Connect(function() task.wait(1) if espEnabled then addESP(plr) end end) end) -- Player selector local selectedPlayer = nil local playerBox = Instance.new("TextBox") playerBox.Size = UDim2.new(0.8,0,0,40) playerBox.Position = UDim2.new(0.1,0,0,210) playerBox.PlaceholderText = "Player name" playerBox.Text = "" playerBox.TextScaled = true playerBox.Parent = panel local killButton = Instance.new("TextButton") killButton.Size = UDim2.new(0.8,0,0,40) killButton.Position = UDim2.new(0.1,0,0,260) killButton.Text = "KILL PLAYER" killButton.TextScaled = true killButton.Parent = panel killButton.MouseButton1Click:Connect(function() local name = playerBox.Text if name ~= "" then remote:FireServer("Kill", name) end end) -- Open/close button local open = Instance.new("TextButton") open.Size = UDim2.new(0,80,0,50) open.Position = UDim2.new(0,20,0.5,0) open.Text = "YUNO" open.TextScaled = true open.Parent = gui open.MouseButton1Click:Connect(function() panel.Visible = not panel.Visible end)local Players = game:GetService("Players") local ReplicatedStorage = game:GetService("ReplicatedStorage") local ADMIN_ID = 123456789 local remote = Instance.new("RemoteEvent") remote.Name = "YunoAdminRemote" remote.Parent = ReplicatedStorage remote.OnServerEvent:Connect(function(player, action, targetName) if player.UserId ~= ADMIN_ID then return end if action == "Kill" and targetName then local target = Players:FindFirstChild(targetName) if target and target.Character then local humanoid = target.Character:FindFirstChildOfClass("Humanoid") if humanoid then humanoid.Health = 0 end end end end)