local ScreenGui = Instance.new("ScreenGui") local ScrollingFrame = Instance.new("ScrollingFrame") local UICorner = Instance.new("UICorner") local MadeByreblex10003 = Instance.new("TextLabel") local TextButton = Instance.new("TextButton") ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui") ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling ScrollingFrame.Parent = ScreenGui ScrollingFrame.Active = true ScrollingFrame.BackgroundColor3 = Color3.fromRGB(67, 255, 95) ScrollingFrame.BorderColor3 = Color3.fromRGB(0, 0, 0) ScrollingFrame.BorderSizePixel = 0 ScrollingFrame.Position = UDim2.new(0.12468566, 0, 0.183253869, 0) ScrollingFrame.Size = UDim2.new(0, 665, 0, 424) UICorner.Parent = ScrollingFrame MadeByreblex10003.Name = "Made By reblex10003" MadeByreblex10003.Parent = ScrollingFrame MadeByreblex10003.BackgroundColor3 = Color3.fromRGB(51, 255, 20) MadeByreblex10003.BorderColor3 = Color3.fromRGB(0, 0, 0) MadeByreblex10003.BorderSizePixel = 0 MadeByreblex10003.Size = UDim2.new(0, 665, 0, 62) MadeByreblex10003.Font = Enum.Font.Cartoon MadeByreblex10003.Text = "Made By reblex10003 on Roblox" MadeByreblex10003.TextColor3 = Color3.fromRGB(0, 0, 0) MadeByreblex10003.TextSize = 14.000 TextButton.Parent = ScrollingFrame TextButton.BackgroundColor3 = Color3.fromRGB(50, 255, 35) TextButton.BorderColor3 = Color3.fromRGB(0, 0, 0) TextButton.BorderSizePixel = 0 TextButton.Position = UDim2.new(0.0406015031, 0, 0.0679601282, 0) TextButton.Size = UDim2.new(0, 200, 0, 50) TextButton.Font = Enum.Font.Cartoon TextButton.Text = "Dance1" TextButton.TextColor3 = Color3.fromRGB(0, 0, 0) TextButton.TextSize = 14.000 local function AAMH_fake_script() -- TextButton.Script local script = Instance.new('Script', TextButton) script.Parent.MouseButton1Click:Connect(function() local Player = game.Players.LocalPlayer local Character = Player.Character local Humanoid = Character:WaitForChild("Humanoid") local Animation = Instance.new("Animation") Animation.AnimationId = "rbxassetid://204328711" local Track = Humanoid:LoadAnimation(Animation) Track:Play() Character.Animate:Destroy() end) end coroutine.wrap(AAMH_fake_script)() local function FBTNYU_fake_script() -- ScrollingFrame.LocalScript local script = Instance.new('LocalScript', ScrollingFrame) local UserInputService = game:GetService("UserInputService") local gui = script.Parent local dragging local dragInput local dragStart local startPos local function update(input) local delta = input.Position - dragStart gui.Position = UDim2.new(startPos.X.Scale, startPos.X.Offset + delta.X, startPos.Y.Scale, startPos.Y.Offset + delta.Y) end gui.InputBegan:Connect(function(input) if input.UserInputType == Enum.UserInputType.MouseButton1 or input.UserInputType == Enum.UserInputType.Touch then dragging = true dragStart = input.Position startPos = gui.Position input.Changed:Connect(function() if input.UserInputState == Enum.UserInputState.End then dragging = false end end) end end) gui.InputChanged:Connect(function(input) if input.UserInputType == Enum.UserInputType.MouseMovement or input.UserInputType == Enum.UserInputType.Touch then dragInput = input end end) UserInputService.InputChanged:Connect(function(input) if input == dragInput and dragging then update(input) end end) end coroutine.wrap(FBTNYU_fake_script)()