Advertisement
Yezzscripts

PTFS SCRIPT

Dec 15th, 2023
1,453
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.01 KB | Gaming | 0 0
  1. -- // Script made by #tupsutumppu / PASTER | Updated: 27.9.2023 | Created: 16.6.2023
  2. local DiscordLib = loadstring(game:HttpGet("https://raw.githubusercontent.com/dawid-scripts/UI-Libs/main/discord%20lib.txt"))()
  3. local win = DiscordLib:Window("PTFS Plane Speed Modifier")
  4. local serv = win:Server("super op script", "")
  5. local maxSpeedChannel = serv:Channel("Max Speed")
  6. local accelerationChannel = serv:Channel("Acceleration")
  7.  
  8. local function mod(target, value)
  9. local senv = getsenv(game:GetService("Players").LocalPlayer.Character.Control)
  10. local fenv = senv.SetupData
  11.  
  12. if (senv and fenv) then
  13. local upvals = debug.getupvalues(fenv)
  14. debug.setupvalue(fenv, target, value)
  15. end
  16. end
  17.  
  18. maxSpeedChannel:Textbox("MaxSpeed", "Type here!", true, function(text)
  19. if tonumber(text) then
  20. mod(4, tonumber(text))
  21. end
  22. end)
  23.  
  24. accelerationChannel:Textbox("Acceleration", "Type here!", true, function(text)
  25. if tonumber(text) then
  26. mod(35, tonumber(text))
  27. end
  28. end)
Tags: #ptfs #yezz
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement