local Players = game:GetService("Players") local UserInputService = game:GetService("UserInputService") local TextChatService = game:GetService("TextChatService") local LP = Players.LocalPlayer local char = LP.Character or LP.CharacterAdded:Wait() local hum = char:WaitForChild("Humanoid") local channel = TextChatService:WaitForChild("TextChannels"):WaitForChild("RBXGeneral") if char:FindFirstChild("Torso") then local screenGui = Instance.new("ScreenGui") screenGui.Parent = LP:WaitForChild("PlayerGui") local frame = Instance.new("Frame") frame.Size = UDim2.new(0,300,0,150) frame.Position = UDim2.new(0.5, -150, 0.5, -75) frame.BackgroundColor3 = Color3.fromRGB(40,40,40) frame.BorderSizePixel = 0 frame.Parent = screenGui local textLabel = Instance.new("TextLabel") textLabel.Size = UDim2.new(1,0,0,50) textLabel.Position = UDim2.new(0,0,0,10) textLabel.Text = "You are R6, do you want to turn to R15?" textLabel.TextColor3 = Color3.fromRGB(255,255,255) textLabel.BackgroundTransparency = 1 textLabel.Font = Enum.Font.SourceSansBold textLabel.TextScaled = true textLabel.Parent = frame local yesButton = Instance.new("TextButton") yesButton.Size = UDim2.new(0,100,0,50) yesButton.Position = UDim2.new(0,30,0,80) yesButton.Text = "Yes" yesButton.BackgroundColor3 = Color3.fromRGB(0,170,0) yesButton.TextColor3 = Color3.fromRGB(255,255,255) yesButton.Font = Enum.Font.SourceSansBold yesButton.TextScaled = true yesButton.Parent = frame local noButton = Instance.new("TextButton") noButton.Size = UDim2.new(0,100,0,50) noButton.Position = UDim2.new(0,170,0,80) noButton.Text = "No" noButton.BackgroundColor3 = Color3.fromRGB(170,0,0) noButton.TextColor3 = Color3.fromRGB(255,255,255) noButton.Font = Enum.Font.SourceSansBold noButton.TextScaled = true noButton.Parent = frame yesButton.MouseButton1Click:Connect(function() channel:SendAsync("-r15") wait(0.1) channel:SendAsync("Fe MelzHub Dance") screenGui:Destroy() end) noButton.MouseButton1Click:Connect(function() screenGui:Destroy() end) end local animations = { M = "rbxassetid://105633157366453", B = "rbxassetid://137158149698662", N = "rbxassetid://103360497719320", V = "rbxassetid://129991743366120" } local animTracks = {} for key, animId in pairs(animations) do local anim = Instance.new("Animation") anim.AnimationId = animId animTracks[key] = hum:LoadAnimation(anim) end local msg = "Fe MelzHub Dance V1" channel:SendAsync(msg) local currentTrack = nil UserInputService.InputBegan:Connect(function(input, gpe) if gpe then return end local key = input.KeyCode.Name if animTracks[key] then if currentTrack then currentTrack:Stop() end currentTrack = animTracks[key] currentTrack:Play() end end)