Advertisement
Lee_everitt

Dead rails script!!

Apr 13th, 2025 (edited)
36
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 8.90 KB | None | 0 0
  1. local player = game.Players.LocalPlayer
  2. local UserInputService = game:GetService("UserInputService")
  3.  
  4. -- Create main GUI
  5. local gui = Instance.new("ScreenGui")
  6. gui.Name = "UltimateTeleportGUI"
  7. gui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  8. gui.ResetOnSpawn = false
  9. gui.Parent = player:WaitForChild("PlayerGui")
  10.  
  11. -- Main frame with insane effects
  12. local mainFrame = Instance.new("Frame")
  13. mainFrame.Name = "MainFrame"
  14. mainFrame.AnchorPoint = Vector2.new(0.5, 0.5)
  15. mainFrame.Size = UDim2.new(0.5, 0, 0.6, 0)
  16. mainFrame.Position = UDim2.new(0.5, 0, 0.5, 0)
  17. mainFrame.BackgroundColor3 = Color3.new(0, 0, 0)
  18. mainFrame.BackgroundTransparency = 0.7
  19. mainFrame.BorderSizePixel = 0
  20. mainFrame.Visible = false -- Start hidden
  21. mainFrame.Parent = gui
  22.  
  23. -- Toggle function
  24. local function toggleGUI()
  25. mainFrame.Visible = not mainFrame.Visible
  26. end
  27.  
  28. -- P key toggle
  29. UserInputService.InputBegan:Connect(function(input, gameProcessed)
  30. if not gameProcessed and input.KeyCode == Enum.KeyCode.P then
  31. toggleGUI()
  32. end
  33. end)
  34.  
  35. -- Add a futuristic border with animated gradient
  36. local border = Instance.new("UIGradient")
  37. border.Name = "BorderGradient"
  38. border.Color = ColorSequence.new({
  39. ColorSequenceKeypoint.new(0, Color3.fromRGB(0, 255, 255)),
  40. ColorSequenceKeypoint.new(0.5, Color3.fromRGB(255, 0, 255)),
  41. ColorSequenceKeypoint.new(1, Color3.fromRGB(255, 255, 0))
  42. })
  43. border.Rotation = 0
  44. border.Parent = mainFrame
  45.  
  46. -- Animate the border gradient
  47. spawn(function()
  48. while true do
  49. for i = 0, 360, 1 do
  50. border.Rotation = i
  51. wait(0.01)
  52. end
  53. end
  54. end)
  55.  
  56. -- Holographic title text
  57. local title = Instance.new("TextLabel")
  58. title.Name = "Title"
  59. title.Size = UDim2.new(0.8, 0, 0.1, 0)
  60. title.Position = UDim2.new(0.1, 0, 0.05, 0)
  61. title.BackgroundTransparency = 1
  62. title.Text = "ULTIMATE TELEPORT MENU\n[Press P to toggle]"
  63. title.TextColor3 = Color3.new(1, 1, 1)
  64. title.TextScaled = true
  65. title.Font = Enum.Font.SciFi
  66. title.TextStrokeColor3 = Color3.new(0, 1, 1)
  67. title.TextStrokeTransparency = 0.5
  68. title.Parent = mainFrame
  69.  
  70. -- Add holographic effect to title
  71. spawn(function()
  72. while true do
  73. for i = 0, 1, 0.05 do
  74. title.TextTransparency = i
  75. title.TextStrokeTransparency = i/2
  76. wait(0.05)
  77. end
  78. for i = 1, 0, -0.05 do
  79. title.TextTransparency = i
  80. title.TextStrokeTransparency = i/2
  81. wait(0.05)
  82. end
  83. end
  84. end)
  85.  
  86. -- Teleport buttons with hover effects
  87. local buttonContainer = Instance.new("Frame")
  88. buttonContainer.Name = "ButtonContainer"
  89. buttonContainer.Size = UDim2.new(0.8, 0, 0.6, 0)
  90. buttonContainer.Position = UDim2.new(0.1, 0, 0.2, 0)
  91. buttonContainer.BackgroundTransparency = 1
  92. buttonContainer.Parent = mainFrame
  93.  
  94. local teleportScripts = {
  95. {
  96. Text = "CASTLE TP",
  97. Color = Color3.fromRGB(0, 255, 255),
  98. Script = [[loadstring(game:HttpGet("https://raw.githubusercontent.com/ringtaa/castletpfast.github.io/refs/heads/main/FASTCASTLE.lua"))()]]
  99. },
  100. {
  101. Text = "FORT TP",
  102. Color = Color3.fromRGB(255, 0, 255),
  103. Script = [[loadstring(game:HttpGet("https://raw.githubusercontent.com/ringtaa/Tpfort.github.io/refs/heads/main/Tpfort.lua"))()]]
  104. },
  105. {
  106. Text = "THE END TP",
  107. Color = Color3.fromRGB(255, 255, 0),
  108. Script = [[loadstring(game:HttpGet("https://raw.githubusercontent.com/gumanba/Scripts/refs/heads/main/DeadRails"))()]]
  109. },
  110. {
  111. Text = "THE END V2 TP",
  112. Color = Color3.fromRGB(0, 255, 0),
  113. Script = [[
  114. _G['EndGameOnlyMode'] = true;
  115. script_key="NqUxLbGADaoMsDEkApIugMaRMbuEZnik";
  116. loadstring(game:HttpGet("https://raw.githubusercontent.com/NebulaHubOfc/Public/refs/heads/main/Loader.lua"))()
  117. ]]
  118. },
  119. }
  120.  
  121. for i, btnData in ipairs(teleportScripts) do
  122. local button = Instance.new("TextButton")
  123. button.Name = btnData.Text
  124. button.Size = UDim2.new(1, 0, 0.2, 0)
  125. button.Position = UDim2.new(0, 0, 0.2 * (i-1), 0)
  126. button.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  127. button.BackgroundTransparency = 0.7
  128. button.BorderSizePixel = 0
  129. button.Text = btnData.Text
  130. button.TextColor3 = Color3.new(1, 1, 1)
  131. button.TextScaled = true
  132. button.Font = Enum.Font.SciFi
  133. button.Parent = buttonContainer
  134.  
  135. -- Add hover effects
  136. button.MouseEnter:Connect(function()
  137. button.BackgroundColor3 = btnData.Color
  138. button.TextColor3 = Color3.new(0, 0, 0)
  139.  
  140. -- Create ripple effect
  141. local ripple = Instance.new("Frame")
  142. ripple.Size = UDim2.new(0, 0, 0, 0)
  143. ripple.AnchorPoint = Vector2.new(0.5, 0.5)
  144. ripple.Position = UDim2.new(0.5, 0, 0.5, 0)
  145. ripple.BackgroundColor3 = btnData.Color
  146. ripple.BackgroundTransparency = 0.7
  147. ripple.BorderSizePixel = 0
  148. ripple.Parent = button
  149.  
  150. local tweenService = game:GetService("TweenService")
  151. local tweenInfo = TweenInfo.new(0.5, Enum.EasingStyle.Quad, Enum.EasingDirection.Out)
  152. local tween = tweenService:Create(ripple, tweenInfo, {
  153. Size = UDim2.new(1, 0, 1, 0),
  154. BackgroundTransparency = 1
  155. })
  156. tween:Play()
  157. tween.Completed:Connect(function()
  158. ripple:Destroy()
  159. end)
  160. end)
  161.  
  162. button.MouseLeave:Connect(function()
  163. button.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  164. button.TextColor3 = Color3.new(1, 1, 1)
  165. end)
  166.  
  167. -- Add click functionality to execute scripts
  168. button.MouseButton1Click:Connect(function()
  169. -- Play confirmation effect
  170. button.Text = "EXECUTING...(DONT SPAM YOU MIGHT GET BANNED)"
  171. local originalColor = button.BackgroundColor3
  172. button.BackgroundColor3 = Color3.new(0, 1, 0)
  173.  
  174. -- Execute the script
  175. local success, err = pcall(function()
  176. loadstring(btnData.Script)()
  177. end)
  178.  
  179. if not success then
  180. button.Text = "ERROR!"
  181. button.BackgroundColor3 = Color3.new(1, 0, 0)
  182. warn("Script execution failed: "..err)
  183. else
  184. button.Text = "SUCCESS!"
  185. end
  186.  
  187. wait(1.5)
  188. button.Text = btnData.Text
  189. button.BackgroundColor3 = originalColor
  190. end)
  191. end
  192.  
  193. -- Add a scanning line effect
  194. local scanLine = Instance.new("Frame")
  195. scanLine.Name = "ScanLine"
  196. scanLine.Size = UDim2.new(1, 0, 0.005, 0)
  197. scanLine.Position = UDim2.new(0, 0, 0, 0)
  198. scanLine.BackgroundColor3 = Color3.new(0, 1, 1)
  199. scanLine.BorderSizePixel = 0
  200. scanLine.BackgroundTransparency = 0.3
  201. scanLine.Parent = mainFrame
  202.  
  203. -- Animate the scan line
  204. spawn(function()
  205. while true do
  206. for i = 0, 1, 0.01 do
  207. scanLine.Position = UDim2.new(0, 0, i, 0)
  208. wait(0.02)
  209. end
  210. end
  211. end)
  212.  
  213. -- Add a digital noise effect overlay
  214. local noise = Instance.new("ImageLabel")
  215. noise.Name = "DigitalNoise"
  216. noise.Size = UDim2.new(1, 0, 1, 0)
  217. noise.Position = UDim2.new(0, 0, 0, 0)
  218. noise.BackgroundTransparency = 1
  219. noise.Image = "rbxassetid://1888835998"
  220. noise.ImageTransparency = 0.9
  221. noise.ScaleType = Enum.ScaleType.Tile
  222. noise.TileSize = UDim2.new(0, 50, 0, 50)
  223. noise.Parent = mainFrame
  224.  
  225. -- Add floating holographic orbs
  226. for i = 1, 4 do
  227. local orb = Instance.new("ImageLabel")
  228. orb.Name = "HolographicOrb_"..i
  229. orb.Size = UDim2.new(0.05, 0, 0.05, 0)
  230. orb.BackgroundTransparency = 1
  231. orb.Image = "rbxassetid://296623538"
  232. orb.ImageColor3 = teleportScripts[i].Color
  233. orb.Parent = mainFrame
  234.  
  235. -- Animate the orbs in circular patterns
  236. spawn(function()
  237. local angle = math.random(0, 360)
  238. local radius = 0.3 + (i * 0.05)
  239. local speed = 0.5 + (i * 0.1)
  240. local center = Vector2.new(0.5, 0.5)
  241.  
  242. while true do
  243. angle = angle + speed
  244. if angle > 360 then angle = 0 end
  245.  
  246. local x = center.X + radius * math.cos(math.rad(angle))
  247. local y = center.Y + radius * math.sin(math.rad(angle))
  248.  
  249. orb.Position = UDim2.new(x, -orb.AbsoluteSize.X/2, y, -orb.AbsoluteSize.Y/2)
  250. wait(0.01)
  251. end
  252. end)
  253. end
  254.  
  255. -- Keybinds for teleports (1-4)
  256. UserInputService.InputBegan:Connect(function(input, gameProcessed)
  257. if gameProcessed then return end
  258.  
  259. local keyIndex
  260. if input.KeyCode == Enum.KeyCode.One then
  261. keyIndex = 1
  262. elseif input.KeyCode == Enum.KeyCode.Two then
  263. keyIndex = 2
  264. elseif input.KeyCode == Enum.KeyCode.Three then
  265. keyIndex = 3
  266. elseif input.KeyCode == Enum.KeyCode.Four then
  267. keyIndex = 4
  268. end
  269.  
  270. if keyIndex and mainFrame.Visible then
  271. local button = buttonContainer:FindFirstChild(teleportScripts[keyIndex].Text)
  272. if button then
  273. button.MouseButton1Click:Fire()
  274. end
  275. end
  276. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement