Advertisement
raul22000000

Untitled

Aug 13th, 2021
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.88 KB | None | 0 0
  1. -----Made By Raul-----
  2.  
  3. local ScreenGui = Instance.new("ScreenGui")
  4. local main = Instance.new("Frame")
  5. local title = Instance.new("TextLabel")
  6. local noslow = Instance.new("TextButton")
  7. local Telespeed = Instance.new("TextButton")
  8. local close = Instance.new("TextButton")
  9. local openmain = Instance.new("Frame")
  10. local open = Instance.new("TextButton")
  11.  
  12. --Properties:
  13.  
  14. ScreenGui.Parent = game.CoreGui
  15.  
  16. main.Name = "main"
  17. main.Parent = ScreenGui
  18. main.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  19. main.Position = UDim2.new(0.00493521988, 0, 0.605482697, 0)
  20. main.Size = UDim2.new(0, 355, 0, 189)
  21. main.Visible = false
  22. main.Draggable = true
  23. main.Active = true
  24.  
  25.  
  26. title.Name = "title"
  27. title.Parent = main
  28. title.BackgroundColor3 = Color3.fromRGB(36, 17, 255)
  29. title.Position = UDim2.new(-0.00281690131, 0, 0, 0)
  30. title.Size = UDim2.new(0, 355, 0, 50)
  31. title.Font = Enum.Font.GothamBold
  32. title.Text = "----Made By Raul---"
  33. title.TextColor3 = Color3.fromRGB(0, 0, 0)
  34. title.TextSize = 14.000
  35.  
  36. noslow.Name = "noslow"
  37. noslow.Parent = main
  38. noslow.BackgroundColor3 = Color3.fromRGB(255, 170, 0)
  39. noslow.Position = UDim2.new(0.0281690136, 0, 0.428571433, 0)
  40. noslow.Size = UDim2.new(0, 136, 0, 53)
  41. noslow.Font = Enum.Font.GothamBold
  42. noslow.Text = "Noslow"
  43. noslow.TextColor3 = Color3.fromRGB(0, 0, 0)
  44. noslow.TextSize = 14.000
  45. noslow.MouseButton1Down:connect(function()
  46. repeat wait()
  47. until game:IsLoaded()
  48. game.Players.LocalPlayer.PlayerGui:WaitForChild("HUD")
  49.  
  50. while wait() do
  51. y = game.Players.LocalPlayer.Character
  52. for i,v in pairs(y:GetChildren()) do
  53. if v.Name == "Justice Combination" then
  54. x = y:WaitForChild("Action")
  55. if x then wait() x:Destroy() end end
  56. if v.Name == "Action" then v:Destroy() end
  57. if v.Name == "Attacking" then v:Destroy() end
  58. if v.Name == "Using" then v:Destroy() end
  59. if v.Name == "hyper" then v:Destroy() end
  60. if v.Name == "Hyper" then v:Destroy() end
  61. if v.Name == "heavy" then v:Destroy() end
  62. if v.Name == "KiBlasted" then v:Destroy() end
  63. if v.Name == "Tele" then v:Destroy() end
  64. if v.Name == "tele" then v:Destroy() end
  65. if v.Name == "Killed" then v:Destroy() end
  66. if v.Name == "Slow" then v:Destroy() end
  67. if v.Name == "Block" and v.Value == true then
  68. v.Value = false end end end
  69. end)
  70.  
  71. Telespeed.Name = "Telespeed"
  72. Telespeed.Parent = main
  73. Telespeed.BackgroundColor3 = Color3.fromRGB(155, 255, 25)
  74. Telespeed.Position = UDim2.new(0.563380301, 0, 0.444444448, 0)
  75. Telespeed.Size = UDim2.new(0, 120, 0, 50)
  76. Telespeed.Font = Enum.Font.GothamBold
  77. Telespeed.Text = "Telespeed"
  78. Telespeed.TextColor3 = Color3.fromRGB(0, 0, 0)
  79. Telespeed.TextSize = 14.000
  80. Telespeed.MouseButton1Click:Connect(function()
  81.  
  82. print("SOON")
  83. end)
  84.  
  85. close.Name = "close"
  86. close.Parent = main
  87. close.BackgroundColor3 = Color3.fromRGB(0, 170, 127)
  88. close.Position = UDim2.new(0.901408434, 0, -2.23517418e-08, 0)
  89. close.Size = UDim2.new(0, 34, 0, 29)
  90. close.Font = Enum.Font.GothamBlack
  91. close.Text = "X"
  92. close.TextColor3 = Color3.fromRGB(0, 0, 0)
  93. close.TextScaled = true
  94. close.TextSize = 14.000
  95. close.TextWrapped = true
  96. close.MouseButton1Click:connect(function()
  97. main.Visible = false
  98. openmain.Visible = true
  99. end)
  100.  
  101. openmain.Name = "openmain"
  102. openmain.Parent = ScreenGui
  103. openmain.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  104. openmain.Position = UDim2.new(0.00493522547, 0, 0.34564957, 0)
  105. openmain.Size = UDim2.new(0, 93, 0, 28)
  106. openmain.Active = true
  107. openmain.Draggable = true
  108.  
  109. open.Name = "open"
  110. open.Parent = openmain
  111. open.BackgroundColor3 = Color3.fromRGB(255, 255, 0)
  112. open.Position = UDim2.new(-0.0107525215, 0, 0, 0)
  113. open.Size = UDim2.new(0, 126, 0, 27)
  114. open.Font = Enum.Font.GothamBold
  115. open.Text = "OPEN"
  116. open.TextColor3 = Color3.fromRGB(0, 0, 0)
  117. open.TextSize = 18.000
  118. open.MouseButton1Down:connect(function()
  119. openmain.Visible = false
  120. main.Visible = true
  121. end)
  122.  
  123. print("thanks for using my script contact me via discord at raul22#0001")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement