-- [[ GUI SECTION ]] -- local ScreenGui = Instance.new("ScreenGui") local Frame = Instance.new("Frame") local TextLabel = Instance.new("TextLabel") local TeleportButton = Instance.new("TextButton") local WalkButton = Instance.new("TextButton") ScreenGui.Name = "NoticeGui" ScreenGui.Parent = game:GetService("CoreGui") Frame.Size = UDim2.new(0, 400, 0, 280) Frame.Position = UDim2.new(0.5, -200, 0.4, -140) Frame.BackgroundColor3 = Color3.fromRGB(30, 30, 30) Frame.BorderSizePixel = 0 Frame.Active = true Frame.Draggable = true Frame.Parent = ScreenGui TextLabel.Size = UDim2.new(1, -20, 0, 150) TextLabel.Position = UDim2.new(0, 10, 0, 10) TextLabel.BackgroundTransparency = 1 TextLabel.TextColor3 = Color3.new(1, 1, 1) TextLabel.TextScaled = true TextLabel.Font = Enum.Font.SourceSansBold TextLabel.Text = "After Scriptblox got messy update Which got banned everyone i updated script which makes your character teleport to location where you can farm dead coins\n\nBONUUS TEXT: glee is headphone when buying it but this is thick brick with black color of 4.5 studs when on transpert 0" TextLabel.Parent = Frame -- BUTTON 1: TELEPORT CHARACTER (NO "GO HERE") TeleportButton.Size = UDim2.new(0, 160, 0, 50) TeleportButton.Position = UDim2.new(0.05, 0, 1, -70) TeleportButton.BackgroundColor3 = Color3.fromRGB(45, 180, 45) TeleportButton.Text = "Teleport" TeleportButton.TextColor3 = Color3.new(1, 1, 1) TeleportButton.Font = Enum.Font.SourceSansBold TeleportButton.Parent = Frame -- BUTTON 2: WALK + SHOW "GO HERE" WalkButton.Size = UDim2.new(0, 160, 0, 50) WalkButton.Position = UDim2.new(0.53, 0, 1, -70) WalkButton.BackgroundColor3 = Color3.fromRGB(180, 45, 45) WalkButton.Text = "I don't want show me where need to go" WalkButton.TextColor3 = Color3.new(1, 1, 1) WalkButton.Font = Enum.Font.SourceSansBold WalkButton.TextScaled = true WalkButton.Parent = Frame -- [[ CORE LOGIC ]] -- local function runBringLogic(teleportPlayer, showGoHere) local Workspace = game:GetService("Workspace") local Player = game:GetService("Players").LocalPlayer local Character = Player.Character or Player.CharacterAdded:Wait() local farmPos = Vector3.new(-123.57, 20, 130.8) local targets = { {name = "MoneyHitbox", pos = farmPos, trans = 0.5}, {name = "Trashcan", pos = Vector3.new(-126, 17.85, 138.14), check = "ClickDetector", moveOnlyOne = true}, {name = "burgre", pos = Vector3.new(-113.1, 18.6, 138.4)}, {name = "Bagcounter", pos = Vector3.new(-139.35, 20.5, 128)}, {name = "glee", pos = Vector3.new(-140, 19.9, 135.7), trans = 0} } local movedTracker = {} -- Strict Bring Logic for _, obj in pairs(Workspace:GetDescendants()) do for _, data in pairs(targets) do if not movedTracker[data.name] and obj.Name:lower() == data.name:lower() and obj:IsA("BasePart") then local valid = true if data.check then if not obj:FindFirstChildOfClass(data.check) then valid = false end end if valid then obj.CFrame = CFrame.new(data.pos) obj.Anchored = true if data.trans then obj.Transparency = data.trans end if data.moveOnlyOne then movedTracker[data.name] = true end end end end end -- Option 1: Teleport Character if teleportPlayer then local Root = Character:WaitForChild("HumanoidRootPart") Root.CFrame = CFrame.new(farmPos + Vector3.new(0, 5, 0)) -- Spawn slightly above to avoid clipping end -- Option 2: Show "Go here" label if showGoHere then local secretPart = Instance.new("Part") secretPart.Name = "GoHerePart" secretPart.Size = Vector3.new(4, 4, 4) secretPart.Position = Vector3.new(-132.64, 14.5, 149.01) secretPart.Transparency = 1 secretPart.Anchored = true secretPart.CanCollide = false secretPart.Parent = Workspace local billing = Instance.new("BillboardGui", secretPart) billing.Size = UDim2.new(0, 200, 0, 50) billing.AlwaysOnTop = true billing.Adornee = secretPart billing.ExtentsOffset = Vector3.new(0, 3, 0) local label = Instance.new("TextLabel", billing) label.Size = UDim2.new(1, 0, 1, 0) label.BackgroundTransparency = 1 label.Text = "Go here" label.TextColor3 = Color3.new(1, 1, 1) label.Font = Enum.Font.SourceSansBold label.TextScaled = true task.spawn(function() while secretPart and secretPart.Parent do if Character:FindFirstChild("HumanoidRootPart") then if (Character.HumanoidRootPart.Position - secretPart.Position).Magnitude <= 10 then secretPart:Destroy() break end end task.wait(0.2) end end) end end TeleportButton.MouseButton1Click:Connect(function() runBringLogic(true, false) ScreenGui:Destroy() end) WalkButton.MouseButton1Click:Connect(function() runBringLogic(false, true) ScreenGui:Destroy() end)