Advertisement
Slowk_InfectionPerfe

Project JoJo OP Gui

Jan 1st, 2020
6,884
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 3.47 KB | None | 0 0
  1. -- Made By Slowk_InfectionPerfe
  2.  
  3. local hax = Instance.new("ScreenGui")
  4. local dz = Instance.new("Frame")
  5. local TextLabel = Instance.new("TextLabel")
  6. local TextButton = Instance.new("TextButton")
  7. local TextButton_2 = Instance.new("TextButton")
  8. local TextButton_3 = Instance.new("TextButton")
  9.  
  10. hax.Name = "hax"
  11. hax.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  12. hax.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  13.  
  14. dz.Name = "dz"
  15. dz.Parent = hax
  16. dz.BackgroundColor3 = Color3.new(0, 0, 0)
  17. dz.BorderColor3 = Color3.new(1, 1, 1)
  18. dz.BorderSizePixel = 5
  19. dz.Position = UDim2.new(0.148753881, 0, 0.205769241, 0)
  20. dz.Size = UDim2.new(0, 409, 0, 278)
  21. dz.Visible = false
  22.  
  23. TextLabel.Parent = dz
  24. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  25. TextLabel.BackgroundTransparency = 1
  26. TextLabel.Position = UDim2.new(0.013081966, 0, 0, 0)
  27. TextLabel.Size = UDim2.new(0, 403, 0, 76)
  28. TextLabel.Font = Enum.Font.SourceSans
  29. TextLabel.Text = "Project Jojo Gui by Slowk"
  30. TextLabel.TextColor3 = Color3.new(1, 1, 1)
  31. TextLabel.TextScaled = true
  32. TextLabel.TextSize = 14
  33. TextLabel.TextWrapped = true
  34.  
  35. TextButton.Parent = dz
  36. TextButton.BackgroundColor3 = Color3.new(1, 1, 1)
  37. TextButton.BackgroundTransparency = 1
  38. TextButton.BorderColor3 = Color3.new(1, 1, 1)
  39. TextButton.BorderSizePixel = 5
  40. TextButton.Position = UDim2.new(0.0122249387, 0, 0.726618707, 0)
  41. TextButton.Size = UDim2.new(0, 200, 0, 50)
  42. TextButton.Font = Enum.Font.SourceSans
  43. TextButton.Text = "Insta Kill"
  44. TextButton.TextColor3 = Color3.new(1, 1, 1)
  45. TextButton.TextScaled = true
  46. TextButton.TextSize = 14
  47. TextButton.TextWrapped = true
  48.  
  49. TextButton_2.Parent = dz
  50. TextButton_2.BackgroundColor3 = Color3.new(1, 1, 1)
  51. TextButton_2.BackgroundTransparency = 1
  52. TextButton_2.BorderColor3 = Color3.new(1, 1, 1)
  53. TextButton_2.BorderSizePixel = 5
  54. TextButton_2.Position = UDim2.new(0.0122249387, 0, 0.273381293, 0)
  55. TextButton_2.Size = UDim2.new(0, 200, 0, 50)
  56. TextButton_2.Font = Enum.Font.SourceSans
  57. TextButton_2.Text = "No Cooldown Time Stop"
  58. TextButton_2.TextColor3 = Color3.new(1, 1, 1)
  59. TextButton_2.TextScaled = true
  60. TextButton_2.TextSize = 14
  61. TextButton_2.TextWrapped = true
  62.  
  63. TextButton_3.Parent = hax
  64. TextButton_3.BackgroundColor3 = Color3.new(1, 0, 0)
  65. TextButton_3.Position = UDim2.new(0.0451713204, 0, 0.574999988, 0)
  66. TextButton_3.Size = UDim2.new(0, 75, 0, 28)
  67. TextButton_3.Font = Enum.Font.SourceSans
  68. TextButton_3.Text = "Show"
  69. TextButton_3.TextColor3 = Color3.new(0, 0, 0)
  70. TextButton_3.TextScaled = true
  71. TextButton_3.TextSize = 14
  72. TextButton_3.TextWrapped = true
  73.  
  74. local function XPOMQ_fake_script()
  75.     local script = Instance.new('Script', TextButton)
  76.  
  77.     script.Parent.MouseButton1Click:Connect(function()
  78.         script.Parent.Parent.Parent.Parent.Parent.Power.Value = math.huge
  79.     end)
  80. end
  81. coroutine.wrap(XPOMQ_fake_script)()
  82. local function YKZD_fake_script()
  83.     local script = Instance.new('Script', TextButton_2)
  84.  
  85.     script.Parent.MouseButton1Click:Connect(function()
  86.         script.Parent.Parent.Parent.Parent.Parent.Special.Value = math.huge
  87.     end)
  88. end
  89. coroutine.wrap(YKZD_fake_script)()
  90. local function MRMIQ_fake_script()
  91.     local script = Instance.new('Script', TextButton_3)
  92.  
  93.     hide = true
  94.    
  95.     script.Parent.MouseButton1Click:Connect(function()
  96.         if hide == true then
  97.             hide = false
  98.             script.Parent.Text = "Hide"
  99.             script.Parent.Parent.dz.Visible = true
  100.         elseif hide == false then
  101.             hide = true
  102.             script.Parent.Text = "Show"
  103.             script.Parent.Parent.dz.Visible = false
  104.         end
  105.     end)
  106. end
  107. coroutine.wrap(MRMIQ_fake_script)()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement