--// Silly Hub | Steal A Brainrot Modded -- Mobile & Delta Friendly GUI -- // UI Creation local ScreenGui = Instance.new("ScreenGui") local Main = Instance.new("Frame") local UICorner = Instance.new("UICorner") local UIStroke = Instance.new("UIStroke") local Title = Instance.new("TextLabel") local Subtitle = Instance.new("TextLabel") local NoclipButton = Instance.new("TextButton") local TPBaseButton = Instance.new("TextButton") -- // Parent Setup ScreenGui.Parent = game:GetService("CoreGui") Main.Parent = ScreenGui Main.BackgroundColor3 = Color3.fromRGB(0, 0, 0) Main.Position = UDim2.new(0.35, 0, 0.3, 0) Main.Size = UDim2.new(0, 230, 0, 160) Main.Active = true Main.Draggable = true UICorner.Parent = Main UICorner.CornerRadius = UDim.new(0, 12) UIStroke.Parent = Main UIStroke.Thickness = 2 UIStroke.Color = Color3.fromRGB(255, 255, 255) -- // Title Title.Parent = Main Title.BackgroundTransparency = 1 Title.Size = UDim2.new(1, 0, 0, 40) Title.Font = Enum.Font.GothamBold Title.Text = "Silly Hub" Title.TextColor3 = Color3.fromRGB(255, 255, 255) Title.TextSize = 22 Title.TextYAlignment = Enum.TextYAlignment.Top -- // Subtitle Subtitle.Parent = Main Subtitle.BackgroundTransparency = 1 Subtitle.Position = UDim2.new(0, 0, 0, 30) Subtitle.Size = UDim2.new(1, 0, 0, 20) Subtitle.Font = Enum.Font.Gotham Subtitle.Text = "Steal A Brainrot Modded" Subtitle.TextColor3 = Color3.fromRGB(180, 180, 180) Subtitle.TextSize = 15 Subtitle.TextYAlignment = Enum.TextYAlignment.Top -- // Noclip Button NoclipButton.Parent = Main NoclipButton.BackgroundColor3 = Color3.fromRGB(20, 20, 20) NoclipButton.Position = UDim2.new(0.1, 0, 0.45, 0) NoclipButton.Size = UDim2.new(0.8, 0, 0, 35) NoclipButton.Font = Enum.Font.GothamBold NoclipButton.Text = "Noclip: OFF" NoclipButton.TextColor3 = Color3.fromRGB(255, 255, 255) NoclipButton.TextSize = 18 Instance.new("UICorner", NoclipButton).CornerRadius = UDim.new(0, 8) -- // Teleport Button TPBaseButton.Parent = Main TPBaseButton.BackgroundColor3 = Color3.fromRGB(20, 20, 20) TPBaseButton.Position = UDim2.new(0.1, 0, 0.72, 0) TPBaseButton.Size = UDim2.new(0.8, 0, 0, 35) TPBaseButton.Font = Enum.Font.GothamBold TPBaseButton.Text = "Teleport to Base" TPBaseButton.TextColor3 = Color3.fromRGB(255, 255, 255) TPBaseButton.TextSize = 18 Instance.new("UICorner", TPBaseButton).CornerRadius = UDim.new(0, 8) -- // Logic local player = game.Players.LocalPlayer local character = player.Character or player.CharacterAdded:Wait() local hrp = character:WaitForChild("HumanoidRootPart") -- Save the base’s exact position (centered, no rotation used) local basePosition = hrp.Position local noclipEnabled = false -- Noclip Toggle NoclipButton.MouseButton1Click:Connect(function() noclipEnabled = not noclipEnabled NoclipButton.Text = "Noclip: " .. (noclipEnabled and "ON" or "OFF") if noclipEnabled then game:GetService("RunService").Stepped:Connect(function() if noclipEnabled and player.Character then for _, part in pairs(player.Character:GetDescendants()) do if part:IsA("BasePart") then part.CanCollide = false end end end end) else for _, part in pairs(player.Character:GetDescendants()) do if part:IsA("BasePart") then part.CanCollide = true end end end end) -- Teleport directly in front of base TPBaseButton.MouseButton1Click:Connect(function() local char = player.Character or player.CharacterAdded:Wait() local hrp = char:WaitForChild("HumanoidRootPart") -- Teleport exactly in front (no rotation, just offset forward by Z) local frontOffset = Vector3.new(0, 5, -10) hrp.CFrame = CFrame.new(basePosition + frontOffset) end)