local Players=game:GetService("Players") local UIS=game:GetService("UserInputService") local TweenService=game:GetService("TweenService") local player=Players.LocalPlayer local gui=Instance.new("ScreenGui") gui.Name="FunnyGuiV2" gui.ResetOnSpawn=false gui.Parent=player:WaitForChild("PlayerGui") local main=Instance.new("Frame") main.Size=UDim2.new(0,560,0,360) main.Position=UDim2.new(0.5,-280,0.5,-180) main.BackgroundColor3=Color3.fromRGB(24,24,34) main.Parent=gui main.Active=true main.Draggable=true Instance.new("UICorner",main).CornerRadius=UDim.new(0,18) local top=Instance.new("Frame") top.Size=UDim2.new(1,0,0,44) top.BackgroundColor3=Color3.fromRGB(36,36,54) top.Parent=main Instance.new("UICorner",top).CornerRadius=UDim.new(0,18) local title=Instance.new("TextLabel") title.Size=UDim2.new(1,-90,1,0) title.Position=UDim2.new(0,14,0,0) title.BackgroundTransparency=1 title.Text="Funny Gui V2" title.Font=Enum.Font.GothamBold title.TextSize=20 title.TextXAlignment=Enum.TextXAlignment.Left title.TextColor3=Color3.fromRGB(240,240,255) title.Parent=top local minimize=Instance.new("TextButton") minimize.Size=UDim2.new(0,32,0,32) minimize.Position=UDim2.new(1,-40,0.5,-16) minimize.Text="-" minimize.Font=Enum.Font.GothamBold minimize.TextSize=26 minimize.TextColor3=Color3.new(1,1,1) minimize.BackgroundColor3=Color3.fromRGB(70,70,95) minimize.Parent=top Instance.new("UICorner",minimize).CornerRadius=UDim.new(1,0) local sidebar=Instance.new("Frame") sidebar.Size=UDim2.new(0,140,1,-44) sidebar.Position=UDim2.new(0,0,0,44) sidebar.BackgroundColor3=Color3.fromRGB(28,28,44) sidebar.Parent=main local sideLayout=Instance.new("UIListLayout") sideLayout.Parent=sidebar sideLayout.Padding=UDim.new(0,8) local content=Instance.new("Frame") content.Size=UDim2.new(1,-140,1,-44) content.Position=UDim2.new(0,140,0,44) content.BackgroundTransparency=1 content.Parent=main local pages={} local function newPage(name) local page=Instance.new("Frame") page.Size=UDim2.new(1,0,1,0) page.Visible=false page.Parent=content pages[name]=page local layout=Instance.new("UIListLayout") layout.Parent=page layout.Padding=UDim.new(0,10) local tab=Instance.new("TextButton") tab.Size=UDim2.new(1,-12,0,38) tab.Text=name tab.Font=Enum.Font.GothamSemibold tab.TextSize=14 tab.TextColor3=Color3.fromRGB(230,230,255) tab.BackgroundColor3=Color3.fromRGB(45,45,70) tab.Parent=sidebar Instance.new("UICorner",tab).CornerRadius=UDim.new(0,14) tab.MouseButton1Click:Connect(function() for _,p in pairs(pages) do p.Visible=false end page.Visible=true end) return page end local function addButton(parent,text,cb) local b=Instance.new("TextButton") b.Size=UDim2.new(1,-20,0,40) b.Position=UDim2.new(0,10,0,0) b.Text=text b.Font=Enum.Font.Gotham b.TextSize=14 b.TextColor3=Color3.fromRGB(245,245,255) b.BackgroundColor3=Color3.fromRGB(55,55,85) b.Parent=parent Instance.new("UICorner",b).CornerRadius=UDim.new(0,14) b.MouseButton1Click:Connect(cb) end local Universal=newPage("Universal") local Animations=newPage("Animations") local TSB=newPage("TSB") local Misc=newPage("Misc") local Hubs=newPage("Hubs") Universal.Visible=true addButton(Universal,"Infinite Yield",function() loadstring(game:HttpGet("https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source"))() end) addButton(Universal,"FE Invisible",function() loadstring(game:HttpGet("https://raw.githubusercontent.com/sussyboiV2/FUNNYGUIMAIN/refs/heads/main/invis.txt"))() end) addButton(Universal,"FE Rewind",function() loadstring(game:HttpGet("https://raw.githubusercontent.com/sussyboiV2/scripts/refs/heads/main/Rewind.txt"))() end) addButton(Animations,"Free Roblox Emotes",function() loadstring(game:HttpGet("https://yarhm.goteamst.com/scr?channel=afem",false))() end) addButton(TSB,"Mahito Moveset",function() loadstring(game:HttpGet("https://raw.githubusercontent.com/sussyboiV2/FUNNYGUIMAIN/refs/heads/main/Mahito"))() end) addButton(TSB,"Gojo JJS",function() loadstring(game:HttpGet("https://raw.githubusercontent.com/sussyboiV2/FUNNYGUIMAIN/refs/heads/main/GojoJJS.txt"))() end) addButton(TSB,"Fake KJ",function() loadstring(game:HttpGet("https://raw.githubusercontent.com/sussyboiV2/FUNNYGUIMAIN/refs/heads/main/KJ.txt"))() end) addButton(TSB,"Floating Girl",function() loadstring(game:HttpGet("https://raw.githubusercontent.com/Reapvitalized/TSB/refs/heads/main/FLOATING_GIRL.lua"))() end) addButton(Hubs,"EVE Hub",function() loadstring(game:HttpGet("https://raw.githubusercontent.com/senioresC/er-gui/refs/heads/main/fisch.lua"))() end) addButton(Misc,"Destroy GUI",function() gui:Destroy() end) local dock=Instance.new("ImageButton") dock.Size=UDim2.new(0,48,0,48) dock.Position=UDim2.new(0,20,0.5,-24) dock.Image="rbxassetid://121186946993085" dock.BackgroundColor3=Color3.fromRGB(36,36,54) dock.Visible=false dock.Parent=gui Instance.new("UICorner",dock).CornerRadius=UDim.new(1,0) minimize.MouseButton1Click:Connect(function() main.Visible=false dock.Visible=true end) dock.MouseButton1Click:Connect(function() main.Visible=true dock.Visible=false end) UIS.InputBegan:Connect(function(i,g) if g then return end if i.KeyCode==Enum.KeyCode.RightShift then main.Visible=not main.Visible end end)