twuph54

Untitled

Sep 28th, 2023 (edited)
21
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.75 KB | None | 0 0
  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. })
Tags: raw
Add Comment
Please, Sign In to add comment