Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --GRAVITY ROPES (VARS)
- local Tele1A = script.Parent.Parent.Tele1A
- local Tele1B = script.Parent.Parent.Tele1B
- local Tele1C = script.Parent.Parent.Tele1C
- local Tele2 = script.Parent.Parent.Tele2
- --THE CRUCIBLE (VARS)
- local Tele3A = script.Parent.Parent.Tele3A
- local Tele3B = script.Parent.Parent.Tele3B
- local Tele4A = script.Parent.Parent.Tele4A
- local Tele4B = script.Parent.Parent.Tele4B
- local Tele5 = script.Parent.Parent.Tele5
- local Tele6 = script.Parent.Parent.Tele6
- local Tele7 = script.Parent.Parent.Tele7
- local Tele8 = script.Parent.Parent.Tele8
- local Tele9 = script.Parent.Parent.Tele9
- local Tele10 = script.Parent.Parent.Tele10
- local debounce = false
- --GRAV ROPES CODE (DO NOT TOUCH IF YOU CAN'T SCRIPT, TRUST ME)
- Tele1A.Touched:Connect(function(touched)
- if touched.Parent:FindFirstChild("Humanoid")then
- print("TelePart Touched")
- local char = touched.Parent
- local humanoidRootPart = char.HumanoidRootPart
- humanoidRootPart.Position = Tele2.Position
- end
- end)
- Tele1B.Touched:Connect(function(touched)
- if touched.Parent:FindFirstChild("Humanoid")then
- print("TelePart Touched")
- local char = touched.Parent
- local humanoidRootPart = char.HumanoidRootPart
- humanoidRootPart.Position = Tele2.Position
- end
- end)
- Tele1C.Touched:Connect(function(touched)
- if touched.Parent:FindFirstChild("Humanoid")then
- print("TelePart Touched")
- local char = touched.Parent
- local humanoidRootPart = char.HumanoidRootPart
- humanoidRootPart.Position = Tele2.Position
- end
- end)
- --THE CRUCIBLE TELE CODE (AGAIN, DO NOT TOUCH IF YOU CAN'T SCRIPT.)
- Tele3A.Touched:Connect(function(touched)
- if touched.Parent:FindFirstChild("Humanoid")then
- print("TelePart Touched")
- local char = touched.Parent
- local humanoidRootPart = char.HumanoidRootPart
- humanoidRootPart.Position = Tele4A.Position
- end
- end)
- Tele3B.Touched:Connect(function(touched)
- if touched.Parent:FindFirstChild("Humanoid")then
- print("TelePart Touched")
- local char = touched.Parent
- local humanoidRootPart = char.HumanoidRootPart
- humanoidRootPart.Position = Tele4B.Position
- end
- end)
- Tele5.Touched:Connect(function(touched)
- if not debounce then
- debounce = true
- if touched.Parent:FindFirstChild("Humanoid")then
- print("TelePart Touched")
- local char = touched.Parent
- local humanoidRootPart = char.HumanoidRootPart
- humanoidRootPart.Position = Tele6.Position
- wait(1)
- debounce = false
- end
- end
- end)
- Tele6.Touched:Connect(function(touched)
- if touched.Parent:FindFirstChild("Humanoid")then
- print("TelePart Touched")
- local char = touched.Parent
- local humanoidRootPart = char.HumanoidRootPart
- humanoidRootPart.Position = Tele9.Position
- wait(1)
- debounce = false
- end
- end
- end)
- Tele7.Touched:Connect(function(touched)
- if not debounce then
- debounce = true
- if touched.Parent:FindFirstChild("Humanoid")then
- print("TelePart Touched")
- local char = touched.Parent
- local humanoidRootPart = char.HumanoidRootPart
- humanoidRootPart.Position = Tele8.Position
- wait(1)
- debounce = false
- end
- end
- end)
- Tele8.Touched:Connect(function(touched)
- if not debounce then
- debounce = true
- if touched.Parent:FindFirstChild("Humanoid")then
- print("TelePart Touched")
- local char = touched.Parent
- local humanoidRootPart = char.HumanoidRootPart
- humanoidRootPart.Position = Tele10.Position
- wait(1)
- debounce = false
- end
- end
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement