Advertisement
Lee_everitt

Untitled

Apr 14th, 2025
12
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.03 KB | None | 0 0
  1. -- Updated Teleport section with Tesla Lab addition
  2. local teleportScripts = {
  3. {
  4. Name = "CASTLE TP",
  5. Script = [[loadstring(game:HttpGet("https://raw.githubusercontent.com/ringtaa/castletpfast.github.io/refs/heads/main/FASTCASTLE.lua"))()]],
  6. Color = Color3.fromRGB(0, 255, 255)
  7. },
  8. {
  9. Name = "FORT TP",
  10. Script = [[loadstring(game:HttpGet("https://raw.githubusercontent.com/ringtaa/Tpfort.github.io/refs/heads/main/Tpfort.lua"))()]],
  11. Color = Color3.fromRGB(255, 0, 255)
  12. },
  13. {
  14. Name = "DEAD RAILS TP", -- Changed from "THE END TP"
  15. Script = [[loadstring(game:HttpGet("https://raw.githubusercontent.com/gumanba/Scripts/refs/heads/main/DeadRails"))()]],
  16. Color = Color3.fromRGB(255, 255, 0)
  17. },
  18. {
  19. Name = "THE END V2 TP",
  20. Script = [[
  21. _G['EndGameOnlyMode'] = true;
  22. script_key="NqUxLbGADaoMsDEkApIugMaRMbuEZnik";
  23. loadstring(game:HttpGet("https://raw.githubusercontent.com/NebulaHubOfc/Public/refs/heads/main/Loader.lua"))()
  24. ]],
  25. Color = Color3.fromRGB(0, 255, 0)
  26. },
  27. { -- New Tesla Lab teleport
  28. Name = "TESLA LAB TP",
  29. Script = [[loadstring(game:HttpGet('https://raw.githubusercontent.com/ringtaa/tptotesla.github.io/refs/heads/main/Tptotesla.lua'))()]],
  30. Color = Color3.fromRGB(255, 100, 0)
  31. }
  32. }
  33.  
  34. -- Update the tab name (around line 50 where the tab button is created)
  35. teleportTab.Text = "DEAD RAILS TP" -- Changed from "TELEPORTS"
  36.  
  37. -- Update the button creation loop to accommodate 5 buttons
  38. for i, scriptData in ipairs(teleportScripts) do
  39. local button = Instance.new("TextButton")
  40. button.Name = scriptData.Name
  41. button.Size = UDim2.new(1, 0, 0.16, 0) -- Changed from 0.2 to fit 5 buttons
  42. button.Position = UDim2.new(0, 0, 0.16 * (i-1), 0) -- Adjusted spacing
  43. button.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  44. button.BackgroundTransparency = 0.7
  45. button.Text = scriptData.Name
  46. button.TextColor3 = Color3.new(1, 1, 1)
  47. button.Font = Enum.Font.SciFi
  48. button.TextScaled = true
  49. button.Parent = teleportContent
  50.  
  51. -- Rest of the button code remains the same...
  52. -- Hover effects
  53. button.MouseEnter:Connect(function()
  54. button.BackgroundColor3 = scriptData.Color
  55. button.TextColor3 = Color3.new(0, 0, 0)
  56. end)
  57.  
  58. button.MouseLeave:Connect(function()
  59. button.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  60. button.TextColor3 = Color3.new(1, 1, 1)
  61. end)
  62.  
  63. -- Click to execute
  64. button.MouseButton1Click:Connect(function()
  65. local originalText = button.Text
  66. button.Text = "EXECUTING..."
  67.  
  68. local success, err = pcall(function()
  69. loadstring(scriptData.Script)()
  70. end)
  71.  
  72. if success then
  73. button.Text = "SUCCESS!"
  74. else
  75. button.Text = "ERROR!"
  76. warn(err)
  77. end
  78.  
  79. wait(1.5)
  80. button.Text = originalText
  81. end)
  82. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement