--Published on https://ahmedmode.com
--Credits goes to the devs!
--Scripts Below:
--Script
-- Don't Get Crushed By 67 Win Teleport Script (Credits: Stephyan12 | Hide button fixed)
local Players = game:GetService("Players")
local TweenService = game:GetService("TweenService")
local SoundService = game:GetService("SoundService")
local Debris = game:GetService("Debris")
local player = Players.LocalPlayer
-- === ANTI-DUPLICATE + SOUND ===
if player.PlayerGui:FindFirstChild("WinTPGui") then
local msg = Instance.new("ScreenGui")
local frame = Instance.new("Frame")
local text = Instance.new("TextLabel")
msg.Parent = player.PlayerGui
frame.Size = UDim2.new(0,420,0,120)
frame.Position = UDim2.new(0.5,-210,0.4,-60)
frame.BackgroundColor3 = Color3.fromRGB(30,30,30)
frame.Parent = msg
Instance.new("UICorner",frame).CornerRadius = UDim.new(0,12)
text.Size = UDim2.new(1,0,1,0)
text.BackgroundTransparency = 1
text.Text = "Its Already Execute\nClose the gui or rejoin to execute again"
text.TextColor3 = Color3.fromRGB(255,80,80)
text.TextScaled = true
text.Font = Enum.Font.GothamBold
text.Parent = frame
local s = Instance.new("Sound", SoundService)
s.SoundId = "rbxassetid://8426701399"
s.Volume = 1
s:Play()
Debris:AddItem(msg,4)
Debris:AddItem(s,6)
return
end
local screenGui = Instance.new("ScreenGui")
screenGui.Name = "WinTPGui"
screenGui.Parent = player:WaitForChild("PlayerGui")
screenGui.ResetOnSpawn = false
local function playClick()
local s = Instance.new("Sound")
s.SoundId = "rbxassetid://6042053626"
s.Volume = 0.8
s.Parent = SoundService
s:Play()
Debris:AddItem(s,2)
end
-- Epic Intro OOF
local introFrame = Instance.new("Frame")
introFrame.Size = UDim2.new(1,0,1,0)
introFrame.BackgroundColor3 = Color3.new(0,0,0)
introFrame.Parent = screenGui
local introText = Instance.new("TextLabel")
introText.Size = UDim2.new(0.9,0,0.3,0)
introText.Position = UDim2.new(0.05,0,0.35,0)
introText.BackgroundTransparency = 1
introText.Text = "Don't forget to use auto clicker\nif you are too lazy to spam clicking\njust to teleport"
introText.TextColor3 = Color3.fromRGB(255,255,255)
introText.TextScaled = true
introText.Font = Enum.Font.GothamBlack
introText.TextStrokeTransparency = 0.7
introText.TextStrokeColor3 = Color3.new(0,0,0)
introText.Parent = introFrame
local introOof = Instance.new("Sound")
introOof.SoundId = "rbxassetid://428495297"
introOof.Volume = 2
introOof.Parent = SoundService
introOof:Play()
spawn(function()
wait(3)
local t = TweenInfo.new(1.5,Enum.EasingStyle.Quad,Enum.EasingDirection.Out)
TweenService:Create(introFrame,t,{BackgroundTransparency=1}):Play()
TweenService:Create(introText,t,{TextTransparency=1}):Play()
TweenService:Create(introOof,t,{Volume=0}):Play()
wait(1.5)
introFrame:Destroy()
introOof:Destroy()
end)
-- Main GUI
local mainFrame = Instance.new("Frame")
mainFrame.Size = UDim2.new(0,260,0,160)
mainFrame.Position = UDim2.new(0.5,-130,0.5,-80)
mainFrame.BackgroundColor3 = Color3.fromRGB(30,30,30)
mainFrame.Draggable = true
mainFrame.Active = true
mainFrame.Parent = screenGui
Instance.new("UICorner",mainFrame).CornerRadius = UDim.new(0,12)
local title = Instance.new("TextLabel")
title.Size = UDim2.new(1,0,0,40)
title.BackgroundTransparency = 1
title.Text = "Win Teleporter"
title.TextColor3 = Color3.fromRGB(0,255,100)
title.TextScaled = true
title.Font = Enum.Font.GothamBold
title.Parent = mainFrame
local tpBtn = Instance.new("TextButton")
tpBtn.Size = UDim2.new(0.8,0,0,55)
tpBtn.Position = UDim2.new(0.1,0,0.35,0)
tpBtn.BackgroundColor3 = Color3.fromRGB(0,170,255)
tpBtn.Text = "Teleport to Win"
tpBtn.TextColor3 = Color3.new(1,1,1)
tpBtn.TextScaled = true
tpBtn.Font = Enum.Font.GothamBold
tpBtn.Parent = mainFrame
Instance.new("UICorner",tpBtn).CornerRadius = UDim.new(0,10)
-- Hide Button − (FIXED: real minus sign)
local hideBtn = Instance.new("TextButton")
hideBtn.Size = UDim2.new(0,30,0,30)
hideBtn.Position = UDim2.new(1,-105,0,5)
hideBtn.BackgroundColor3 = Color3.fromRGB(255,170,0)
hideBtn.Text = "−" -- Real minus sign
hideBtn.TextColor3 = Color3.new(1,1,1)
hideBtn.TextScaled = true
hideBtn.Font = Enum.Font.GothamBold
hideBtn.Parent = mainFrame
Instance.new("UICorner",hideBtn).CornerRadius = UDim.new(0,15)
-- Credits Button (i)
local creditsBtn = Instance.new("TextButton")
creditsBtn.Size = UDim2.new(0,30,0,30)
creditsBtn.Position = UDim2.new(1,-70,0,5)
creditsBtn.BackgroundColor3 = Color3.fromRGB(100,200,255)
creditsBtn.Text = "i"
creditsBtn.TextColor3 = Color3.new(1,1,1)
creditsBtn.TextScaled = true
creditsBtn.Font = Enum.Font.GothamBold
creditsBtn.Parent = mainFrame
Instance.new("UICorner",creditsBtn).CornerRadius = UDim.new(0,15)
-- Close Button (X)
local closeBtn = Instance.new("TextButton")
closeBtn.Size = UDim2.new(0,30,0,30)
closeBtn.Position = UDim2.new(1,-35,0,5)
closeBtn.BackgroundColor3 = Color3.fromRGB(255,50,50)
closeBtn.Text = "X"
closeBtn.TextColor3 = Color3.new(1,1,1)
closeBtn.TextScaled = true
closeBtn.Parent = mainFrame
Instance.new("UICorner",closeBtn).CornerRadius = UDim.new(0,15)
-- === CREDITS POPUP (Now says Stephyan12) ===
local creditsGui = Instance.new("Frame")
creditsGui.Size = UDim2.new(0,320,0,200)
creditsGui.Position = UDim2.new(0.5,-160,0.5,-100)
creditsGui.BackgroundColor3 = Color3.fromRGB(25,25,35)
creditsGui.BackgroundTransparency = 1
creditsGui.Visible = false
creditsGui.Parent = screenGui
Instance.new("UICorner",creditsGui).CornerRadius = UDim.new(0,16)
local creditsTitle = Instance.new("TextLabel")
creditsTitle.Size = UDim2.new(1,0,0,50)
creditsTitle.BackgroundTransparency = 1
creditsTitle.Text = "Credits"
creditsTitle.TextColor3 = Color3.fromRGB(0,255,150)
creditsTitle.TextScaled = true
creditsTitle.Font = Enum.Font.GothamBlack
creditsTitle.Parent = creditsGui
local creditsText = Instance.new("TextLabel")
creditsText.Size = UDim2.new(0.9,0,0.6,0)
creditsText.Position = UDim2.new(0.05,0,0.25,0)
creditsText.BackgroundTransparency = 1
creditsText.Text = "Script made with love by\nStephyan12\n\nSpecial thanks to Grok for\nhelping build the ultimate\nwin teleporter!"
creditsText.TextColor3 = Color3.fromRGB(200,200,255)
creditsText.TextScaled = true
creditsText.Font = Enum.Font.Gotham
creditsText.Parent = creditsGui
local closeCreditsBtn = Instance.new("TextButton")
closeCreditsBtn.Size = UDim2.new(0,40,0,40)
closeCreditsBtn.Position = UDim2.new(1,-50,0,10)
closeCreditsBtn.BackgroundColor3 = Color3.fromRGB(255,80,80)
closeCreditsBtn.Text = "X"
closeCreditsBtn.TextColor3 = Color3.new(1,1,1)
closeCreditsBtn.TextScaled = true
closeCreditsBtn.Font = Enum.Font.GothamBold
closeCreditsBtn.Parent = creditsGui
Instance.new("UICorner",closeCreditsBtn).CornerRadius = UDim.new(0,20)
-- Open/Close Credits
local function openCredits()
playClick()
creditsGui.Visible = true
TweenService:Create(creditsGui, TweenInfo.new(0.4, Enum.EasingStyle.Quint), {BackgroundTransparency = 0.1}):Play()
end
local function closeCredits()
playClick()
TweenService:Create(creditsGui, TweenInfo.new(0.4, Enum.EasingStyle.Quint), {BackgroundTransparency = 1}):Play()
task.delay(0.4, function() creditsGui.Visible = false end)
end
creditsBtn.MouseButton1Click:Connect(openCredits)
closeCreditsBtn.MouseButton1Click:Connect(closeCredits)
-- Open Circle & Hide/Show
local openBtn = Instance.new("TextButton")
openBtn.Size = UDim2.new(0,70,0,70)
openBtn.Position = UDim2.new(0,15,0.8,0)
openBtn.BackgroundColor3 = Color3.fromRGB(0,170,255)
openBtn.Text = "Open"
openBtn.TextColor3 = Color3.new(1,1,1)
openBtn.TextScaled = true
openBtn.Font = Enum.Font.GothamBold
openBtn.BackgroundTransparency = 1
openBtn.Visible = false
openBtn.Parent = screenGui
Instance.new("UICorner",openBtn).CornerRadius = UDim.new(1,0)
local tweenInfo = TweenInfo.new(0.45, Enum.EasingStyle.Quint, Enum.EasingDirection.Out)
local function hideGUI()
playClick()
openBtn.Visible = true
TweenService:Create(mainFrame, tweenInfo, {Size = UDim2.new(0,0,0,0), BackgroundTransparency = 1}):Play()
TweenService:Create(openBtn, tweenInfo, {BackgroundTransparency = 0}):Play()
task.delay(0.5, function() mainFrame.Visible = false end)
end
local function showGUI()
playClick()
mainFrame.Visible = true
TweenService:Create(mainFrame, tweenInfo, {Size = UDim2.new(0,260,0,160), BackgroundTransparency = 0}):Play()
TweenService:Create(openBtn, tweenInfo, {BackgroundTransparency = 1}):Play()
task.delay(0.5, function() openBtn.Visible = false end)
end
-- Teleport & Win Detection
local function findWinPad()
local keywords = {"win","finish","end","victory","pad","goal","winner","stage100","final"}
for _,v in workspace:GetDescendants() do
if v:IsA("BasePart") and v.Anchored and v.Size.Magnitude > 15 then
for _,w in keywords do
if string.find(string.lower(v.Name),w) then return v end
end
end
end
local highest, maxY = nil, -math.huge
for _,v in workspace:GetDescendants() do
if v:IsA("BasePart") and v.Anchored and v.Position.Y > maxY then
maxY = v.Position.Y highest = v
end
end
return highest
end
local function teleportToWin()
local char = player.Character or player.CharacterAdded:Wait()
local hrp = char:WaitForChild("HumanoidRootPart",5)
if not hrp then return end
local win = findWinPad()
if win then
hrp.CFrame = win.CFrame + Vector3.new(0,6,0)
if char:FindFirstChild("Humanoid") then
char.Humanoid.WalkSpeed = 50
char.Humanoid.JumpPower = 50
end
end
end
-- Buttons
local cooldownTime = 20
local onCooldown = false
tpBtn.MouseButton1Click:Connect(function()
playClick()
if onCooldown then return end
onCooldown = true
tpBtn.BackgroundColor3 = Color3.fromRGB(80,80,80)
tpBtn.Text = "Wait "..cooldownTime.."s"
teleportToWin()
spawn(function()
for i = cooldownTime-1,0,-1 do
wait(1)
tpBtn.Text = "Wait "..i.."s"
end
tpBtn.Text = "Teleport to Win"
tpBtn.BackgroundColor3 = Color3.fromRGB(0,170,255)
onCooldown = false
end)
end)
hideBtn.MouseButton1Click:Connect(hideGUI)
openBtn.MouseButton1Click:Connect(showGUI)
closeBtn.MouseButton1Click:Connect(function() playClick() screenGui:Destroy() end)
print("Win Teleporter by Stephyan12 loaded successfully!")
Views: 2
