Advertisement
Guest User

Untitled

a guest
Jan 22nd, 2020
151
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.67 KB | None | 0 0
  1. -- Gui to Lua
  2. -- Version: 3.1
  3.  
  4. -- Instances:
  5.  
  6. local NinjaLegend = Instance.new("ScreenGui")
  7. local Frame = Instance.new("Frame")
  8. local TextLabel = Instance.new("TextLabel")
  9. local DupePets = Instance.new("TextButton")
  10. local TextLabel_2 = Instance.new("TextLabel")
  11. local TextLabel_3 = Instance.new("TextLabel")
  12. local TextLabel_4 = Instance.new("TextLabel")
  13. local UNLIJUMP = Instance.new("TextButton")
  14.  
  15. --Properties:
  16.  
  17. NinjaLegend.Name = "Ninja Legend"
  18. NinjaLegend.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  19. NinjaLegend.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  20.  
  21. Frame.Parent = NinjaLegend
  22. Frame.BackgroundColor3 = Color3.fromRGB(85, 255, 255)
  23. Frame.Position = UDim2.new(0.0114091896, 0, 0.103197671, 0)
  24. Frame.Size = UDim2.new(0, 188, 0, 306)
  25.  
  26. TextLabel.Parent = Frame
  27. TextLabel.BackgroundColor3 = Color3.fromRGB(85, 255, 255)
  28. TextLabel.Size = UDim2.new(0, 188, 0, 50)
  29. TextLabel.Font = Enum.Font.Fantasy
  30. TextLabel.Text = "Sky Blue Exploit"
  31. TextLabel.TextColor3 = Color3.fromRGB(0, 0, 0)
  32. TextLabel.TextSize = 14.000
  33.  
  34. DupePets.Name = "Dupe Pets"
  35. DupePets.Parent = Frame
  36. DupePets.BackgroundColor3 = Color3.fromRGB(85, 255, 255)
  37. DupePets.Position = UDim2.new(0.101063848, 0, 0.264705896, 0)
  38. DupePets.Size = UDim2.new(0, 150, 0, 43)
  39. DupePets.Font = Enum.Font.GothamSemibold
  40. DupePets.Text = "Dupe Pets"
  41. DupePets.TextColor3 = Color3.fromRGB(0, 0, 0)
  42. DupePets.TextSize = 14.000
  43. DupePets.MouseButton1Down:connect(function()
  44. while wait() do
  45. game.ReplicatedStorage.rEvents.tradingEvent:FireServer("acceptTrade")
  46. end
  47. end)
  48. TextLabel_2.Parent = Frame
  49. TextLabel_2.BackgroundColor3 = Color3.fromRGB(85, 255, 255)
  50. TextLabel_2.Position = UDim2.new(0.145020217, 0, 0.940845251, 0)
  51. TextLabel_2.Size = UDim2.new(0, 133, 0, 18)
  52. TextLabel_2.Font = Enum.Font.Fantasy
  53. TextLabel_2.Text = "Gui By Kerwin Rosillo"
  54. TextLabel_2.TextColor3 = Color3.fromRGB(0, 0, 0)
  55. TextLabel_2.TextSize = 14.000
  56.  
  57. TextLabel_3.Parent = Frame
  58. TextLabel_3.BackgroundColor3 = Color3.fromRGB(85, 255, 255)
  59. TextLabel_3.BorderColor3 = Color3.fromRGB(85, 255, 255)
  60. TextLabel_3.Position = UDim2.new(0.145020217, 0, 0.43104136, 0)
  61. TextLabel_3.Size = UDim2.new(0, 133, 0, 25)
  62. TextLabel_3.Font = Enum.Font.Fantasy
  63. TextLabel_3.Text = "before you click make sure you open"
  64. TextLabel_3.TextColor3 = Color3.fromRGB(0, 0, 0)
  65. TextLabel_3.TextSize = 12.000
  66.  
  67. TextLabel_4.Parent = Frame
  68. TextLabel_4.BackgroundColor3 = Color3.fromRGB(85, 255, 255)
  69. TextLabel_4.BorderColor3 = Color3.fromRGB(85, 255, 255)
  70. TextLabel_4.Position = UDim2.new(0.145020217, 0, 0.512740672, 0)
  71. TextLabel_4.Size = UDim2.new(0, 133, 0, 25)
  72. TextLabel_4.Font = Enum.Font.Fantasy
  73. TextLabel_4.Text = "same account to disconnect it"
  74. TextLabel_4.TextColor3 = Color3.fromRGB(0, 0, 0)
  75. TextLabel_4.TextSize = 12.000
  76.  
  77. UNLIJUMP.Name = "UNLI JUMP"
  78. UNLIJUMP.Parent = Frame
  79. UNLIJUMP.BackgroundColor3 = Color3.fromRGB(85, 255, 255)
  80. UNLIJUMP.Position = UDim2.new(0.0991611332, 0, 0.682332039, 0)
  81. UNLIJUMP.Size = UDim2.new(0, 150, 0, 43)
  82. UNLIJUMP.Font = Enum.Font.GothamSemibold
  83. UNLIJUMP.Text = "UNLIMITED JUMP"
  84. UNLIJUMP.TextColor3 = Color3.fromRGB(0, 0, 0)
  85. UNLIJUMP.TextSize = 14.000
  86. UNLIJUMP.MouseButton1Down:connect(function()
  87. local InfiniteJumpEnabled = true
  88. game:GetService("UserInputService").JumpRequest:connect(function()
  89. if InfiniteJumpEnabled then
  90. game:GetService"Players".LocalPlayer.Character:FindFirstChildOfClass'Humanoid':ChangeState("Jumping")
  91. end
  92. end)
  93. end)
  94. -- Scripts:
  95.  
  96. local function YZAWB_fake_script() -- NinjaLegend.LocalScript
  97. local script = Instance.new('LocalScript', NinjaLegend)
  98.  
  99. frame = script.Parent.Frame
  100. frame.Draggable = true
  101. frame.Active = true
  102. frame.Selectable = true
  103.  
  104.  
  105. end
  106. coroutine.wrap(YZAWB_fake_script)()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement