Advertisement
twuph54

Untitled

Sep 30th, 2023
266
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. local OrionLib = loadstring(game:HttpGet('https://raw.githubusercontent.com/shlexware/Orion/main/source'))()
  2.  
  3. local Window = OrionLib:MakeWindow({Name = "CD_FBI脚本", HidePremium = FALSE, SaveConfig = TRUE,IntroText = "欢迎使用CD_FBI脚本", ConfigFolder = "CD_FBI脚本"})
  4.  
  5. local Tab =Window:MakeTab({
  6.     Name = "玩家",
  7.     Icon = "rbxassetid://323627983",
  8.     PremiumOnly = FALSE
  9. })
  10.  
  11. Tab:AddTextbox({
  12.     Name = "移动速度",
  13.     DEFAULT = "",
  14.     TextDisappear = TRUE,
  15.     Callback = FUNCTION(VALUE)
  16.         game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = VALUE
  17.     END
  18. })
  19.  
  20. Tab:AddTextbox({
  21.     Name = "跳跃高度",
  22.     DEFAULT = "",
  23.     TextDisappear = TRUE,
  24.     Callback = FUNCTION(VALUE)
  25.         game.Players.LocalPlayer.Character.Humanoid.JumpPower = VALUE
  26.     END
  27. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement