-- Fake Hack Hub GUI (for trolling in YOUR game) -- Put this LocalScript in StarterPlayerScripts local Players = game:GetService("Players") local player = Players.LocalPlayer -- Create ScreenGui local gui = Instance.new("ScreenGui") gui.Name = "TrollHub" gui.Parent = player:WaitForChild("PlayerGui") -- Main Frame local frame = Instance.new("Frame") frame.Size = UDim2.new(0, 300, 0, 200) frame.Position = UDim2.new(0.5, -150, 0.5, -100) frame.BackgroundColor3 = Color3.fromRGB(30, 30, 30) frame.BorderSizePixel = 0 frame.Parent = gui -- Title local title = Instance.new("TextLabel") title.Size = UDim2.new(1, 0, 0, 40) title.BackgroundColor3 = Color3.fromRGB(50, 50, 50) title.Text = "Hack Hub v1.0" title.TextColor3 = Color3.fromRGB(0, 255, 0) title.Font = Enum.Font.SourceSansBold title.TextSize = 22 title.Parent = frame -- Button creator function local function makeButton(text, y, callback) local btn = Instance.new("TextButton") btn.Size = UDim2.new(1, -20, 0, 40) btn.Position = UDim2.new(0, 10, 0, y) btn.BackgroundColor3 = Color3.fromRGB(60, 60, 60) btn.Text = text btn.TextColor3 = Color3.fromRGB(255,255,255) btn.Parent = frame btn.MouseButton1Click:Connect(callback) end -- Example Troll Features makeButton("Speed x5", 50, function() player.Character.Humanoid.WalkSpeed = 80 end) makeButton("Spin!", 100, function() local char = player.Character if char then local hrp = char:FindFirstChild("HumanoidRootPart") while task.wait(0.05) do if not hrp then break end hrp.CFrame = hrp.CFrame * CFrame.Angles(0, math.rad(20), 0) end end end) makeButton("Fake Kick Msg", 150, function() game:GetService("StarterGui"):SetCore("SendNotification", { Title = "Kicked!"; Text = "Reason: exploiting detected 😱"; Duration = 5; }) end)