-
Notifications
You must be signed in to change notification settings - Fork 3
/
SteepStepsAntiTeleportBypass.lua
51 lines (36 loc) · 2.19 KB
/
SteepStepsAntiTeleportBypass.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
--[[
╋╋╋╋╋╋┏┓╋╋╋╋╋╋╋╋┏┓╋╋╋╋╋╋╋┏┓╋╋╋╋╋┏┓
╋╋╋╋╋┏┛┗┓╋╋╋╋╋╋╋┃┃╋╋╋╋╋╋┏┛┗┓╋╋╋╋┃┃
┏━┓┏━┻┓┏╋━┳━━┳━━┫┃┏┳━━┳━┻┓┏╋━━┳━┛┃
┃┏┓┫┏┓┃┃┃┏┫┃━┫┏┓┃┃┣┫┏━┫┏┓┃┃┃┃━┫┏┓┃
┃┃┃┃┗┛┃┗┫┃┃┃━┫┗┛┃┗┫┃┗━┫┏┓┃┗┫┃━┫┗┛┃
┗┛┗┻━━┻━┻┛┗━━┫┏━┻━┻┻━━┻┛┗┻━┻━━┻━━┛
╋╋╋╋╋╋╋╋╋╋╋╋╋┃┃
╋╋╋╋╋╋╋╋╋╋╋╋╋┗┛
]]--
--[[
Anti Teleport Bypass for Steep Steps
!! DO NOT PUT IN AUTOEXE !!
!! EXECUTE THIS WHEN YOU ARE FULLY LOADED OUT OF THE BLACK BOX SPAWN AREA !!
If there is any issues with the script not doing anything, try changing the "CFrame.new(0, -499, 0)" at line 28 into "CFrame.new(0, -500, 0)", same with line 43.
]]--
repeat wait() until game:IsLoaded()
local CoreGui = game:GetService("StarterGui")
local Players = game:GetService("Players")
local LocalPlayer = Players.LocalPlayer
CoreGui:SetCore("SendNotification", {Title = "Notification", Text = "Attempting to bypass Anti Teleport, please wait!", Duration = 3})
Root = LocalPlayer.Character:FindFirstChild("HumanoidRootPart")
Root.CFrame = CFrame.new(0, -499, 0)
LocalPlayer.Character.Humanoid.Died:Connect(function()
warn("died, now waiting 3 seconds before teleporting")
task.wait(4)
LocalPlayer.Character:FindFirstChild("HumanoidRootPart").CFrame = CFrame.new(-738, 2499, -308)
Root = LocalPlayer.Character:FindFirstChild("HumanoidRootPart")
Root.CFrame = CFrame.new(0, -499, 0)
LocalPlayer.Character.Humanoid.Died:Connect(function()
warn("died, now waiting 3 seconds before teleporting again LOL")
task.wait(4)
LocalPlayer.Character:FindFirstChild("HumanoidRootPart").CFrame = CFrame.new(-738, 2499, -308)
CoreGui:SetCore("SendNotification", {Title = "Notification", Text = "Anti Teleport has been successfully bypassed! Feel free to teleport around now.", Duration = 5})
end)
end)