Advertisement
Lee_everitt

Chatgbt ahh

Apr 14th, 2025
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.10 KB | None | 0 0
  1. local player = game.Players.LocalPlayer
  2. local UIS = game:GetService("UserInputService")
  3.  
  4. local screenGui = Instance.new("ScreenGui", player:WaitForChild("PlayerGui"))
  5. screenGui.Name = "LEE SCRIPT"
  6. screenGui.ResetOnSpawn = false
  7.  
  8. local frame = Instance.new("Frame", screenGui)
  9. frame.Size = UDim2.new(0, 350, 0, 280)
  10. frame.Position = UDim2.new(0.5, -175, 0.5, -140)
  11. frame.BackgroundColor3 = Color3.fromRGB(35, 35, 35)
  12. frame.BorderSizePixel = 0
  13. Instance.new("UICorner", frame).CornerRadius = UDim.new(0, 12)
  14. frame.Active = true
  15. frame.Draggable = true
  16.  
  17. local title = Instance.new("TextLabel", frame)
  18. title.Size = UDim2.new(1, 0, 0, 50)
  19. title.BackgroundTransparency = 1
  20. title.Text = "LEE'S UI"
  21. title.TextColor3 = Color3.fromRGB(255, 255, 255)
  22. title.Font = Enum.Font.GothamBold
  23. title.TextSize = 30
  24.  
  25. local mainTab = Instance.new("Frame", frame)
  26. mainTab.Size = UDim2.new(1, 0, 1, 0)
  27. mainTab.BackgroundTransparency = 1
  28.  
  29. local tabButton = Instance.new("TextButton", mainTab)
  30. tabButton.Size = UDim2.new(0.8, 0, 0, 40)
  31. tabButton.Position = UDim2.new(0.1, 0, 0.45, 0)
  32. tabButton.Text = "Dead Rails TP"
  33. tabButton.TextColor3 = Color3.fromRGB(255, 255, 255)
  34. tabButton.BackgroundColor3 = Color3.fromRGB(60, 120, 255)
  35. tabButton.Font = Enum.Font.Gotham
  36. tabButton.TextSize = 20
  37. Instance.new("UICorner", tabButton).CornerRadius = UDim.new(0, 10)
  38.  
  39. local tpFrame = Instance.new("Frame", frame)
  40. tpFrame.Size = UDim2.new(1, 0, 1, 0)
  41. tpFrame.Position = UDim2.new(0, 0, 0, 0)
  42. tpFrame.BackgroundTransparency = 1
  43. tpFrame.Visible = false
  44.  
  45. local function makeButton(text, posY, func)
  46. local btn = Instance.new("TextButton", tpFrame)
  47. btn.Size = UDim2.new(0.8, 0, 0, 35)
  48. btn.Position = UDim2.new(0.1, 0, posY, 0)
  49. btn.Text = text
  50. btn.TextColor3 = Color3.fromRGB(255, 255, 255)
  51. btn.BackgroundColor3 = Color3.fromRGB(40, 130, 90)
  52. btn.Font = Enum.Font.Gotham
  53. btn.TextSize = 18
  54. Instance.new("UICorner", btn).CornerRadius = UDim.new(0, 10)
  55. btn.MouseButton1Click:Connect(func)
  56. end
  57.  
  58. -- TP Buttons
  59. makeButton("Castle TP", 0.12, function()
  60. loadstring(game:HttpGet("https://raw.githubusercontent.com/ringtaa/castletpfast.github.io/refs/heads/main/FASTCASTLE.lua"))()
  61. end)
  62.  
  63. makeButton("Fort TP", 0.28, function()
  64. loadstring(game:HttpGet("https://raw.githubusercontent.com/ringtaa/Tpfort.github.io/refs/heads/main/Tpfort.lua"))()
  65. end)
  66.  
  67. makeButton("The End TP", 0.44, function()
  68. loadstring(game:HttpGet("https://raw.githubusercontent.com/gumanba/Scripts/refs/heads/main/DeadRails"))()
  69. end)
  70.  
  71. makeButton("Tesla Lab TP", 0.60, function()
  72. loadstring(game:HttpGet("https://raw.githubusercontent.com/ringtaa/tptotesla.github.io/refs/heads/main/Tptotesla.lua"))()
  73. end)
  74.  
  75. makeButton("More Soon", 0.76, function()
  76. print("Coming soon!")
  77. end)
  78.  
  79. -- Back Button
  80. local backButton = Instance.new("TextButton", tpFrame)
  81. backButton.Size = UDim2.new(0.6, 0, 0, 30)
  82. backButton.Position = UDim2.new(0.2, 0, 0.9, 0)
  83. backButton.Text = "Back"
  84. backButton.TextColor3 = Color3.fromRGB(255, 255, 255)
  85. backButton.BackgroundColor3 = Color3.fromRGB(150, 60, 60)
  86. backButton.Font = Enum.Font.Gotham
  87. backButton.TextSize = 18
  88. Instance.new("UICorner", backButton).CornerRadius = UDim.new(0, 8)
  89.  
  90. -- Tab toggle logic
  91. tabButton.MouseButton1Click:Connect(function()
  92. mainTab.Visible = false
  93. tpFrame.Visible = true
  94. end)
  95.  
  96. backButton.MouseButton1Click:Connect(function()
  97. tpFrame.Visible = false
  98. mainTab.Visible = true
  99. end)
  100.  
  101. -- Keybind (P) toggle
  102. UIS.InputBegan:Connect(function(input, gpe)
  103. if not gpe and input.KeyCode == Enum.KeyCode.P then
  104. frame.Visible = not frame.Visible
  105. end
  106. end)
  107.  
  108. -- Mobile Toggle Button
  109. local mobileBtn = Instance.new("TextButton", screenGui)
  110. mobileBtn.Size = UDim2.new(0, 80, 0, 35)
  111. mobileBtn.Position = UDim2.new(1, -90, 1, -45)
  112. mobileBtn.AnchorPoint = Vector2.new(0, 0)
  113. mobileBtn.Text = "Toggle UI"
  114. mobileBtn.TextColor3 = Color3.fromRGB(255, 255, 255)
  115. mobileBtn.BackgroundColor3 = Color3.fromRGB(80, 80, 255)
  116. mobileBtn.Font = Enum.Font.Gotham
  117. mobileBtn.TextSize = 16
  118. Instance.new("UICorner", mobileBtn).CornerRadius = UDim.new(0, 8)
  119.  
  120. mobileBtn.MouseButton1Click:Connect(function()
  121. frame.Visible = not frame.Visible
  122. end)
  123.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement