Advertisement
Arabicscripts

Inf jump

Jan 31st, 2023 (edited)
44
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.48 KB | None | 0 0
  1. local controls = require(game:GetService("Players").LocalPlayer.PlayerScripts.PlayerModule):GetControls() controls:Enable()
  2. local cmdlp = game:GetService("Players").LocalPlayer
  3. cmdlp.Character.Humanoid:SetStateEnabled(Enum.HumanoidStateType.Jumping,true)
  4. local ScreenGui = Instance.new("ScreenGui")
  5. local Frame = Instance.new("Frame")
  6. local TextButton = Instance.new("TextButton")
  7.  
  8.  
  9. ScreenGui.Parent = game.CoreGui
  10.  
  11. Frame.Parent = ScreenGui
  12. Frame.BackgroundColor3 = Color3.new(2,5,0)
  13. Frame.BorderColor3 = Color3.new(6,4,9)
  14. Frame.Position = UDim2.new(0.8,0.5,0.7)
  15. Frame.Size = UDim2.new(0.2,0,0.3)
  16. Frame.Active = true
  17. Frame.Draggable = true
  18.  
  19. TextButton.Parent = Frame
  20. TextButton.BackgroundColor3 = Color3.new(2,5,2)
  21. TextButton.BackgroundTransparency = 0
  22. TextButton.Position = UDim2.new(0.103524067, 0, 0.200333327, 0)
  23. TextButton.Size = UDim2.new(0.8,0.9,0.6)
  24. TextButton.Font = Enum.Font.SourceSansLight
  25. TextButton.FontSize = Enum.FontSize.Size14
  26. TextButton.Text = "للقفز اضغط"
  27. TextButton.TextScaled = true
  28. TextButton.TextSize = 8
  29. TextButton.TextWrapped = true
  30.  
  31. game:GetService("StarterGui"):SetCore("SendNotification", {
  32. Title = "عربي لانهائي قفز سكربت";
  33. Text = "حيدر من صنع hidar_GG3";
  34. Icon = "rbxthumb://type=Asset&id=5107182114&w=150&h=150"})
  35. Duration = 5;
  36.  
  37. run = false
  38. TextButton.MouseButton1Click:connect(function()
  39. run = not run
  40. game:GetService"Players".LocalPlayer.Character:FindFirstChildOfClass'Humanoid':ChangeState("Jumping")
  41. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement