NothingYT960

Hitbox script

Jul 21st, 2024
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.40 KB | None | 0 0
  1. local player = game.Players.LocalPlayer
  2.  
  3. local OrionLib = loadstring(game:HttpGet(('https://raw.githubusercontent.com/shlexware/Orion/main/source')))()
  4.  
  5.  
  6. local Window = OrionLib:MakeWindow({Name = "NothingHub", HidePremium = false, SaveConfig = true, ConfigFolder = "OrionTest"})
  7.  
  8. --[[
  9.  
  10. Name = <string> - The name of the UI.
  11.  
  12. HidePremium = <bool> - Whether or not the user details shows Premium status or not.
  13.  
  14. SaveConfig = <bool> - Toggles the config saving in the UI.
  15.  
  16. ConfigFolder = <string> - The name of the folder where the configs are saved.
  17.  
  18. IntroEnabled = <bool> - Whether or not to show the intro animation.
  19.  
  20. IntroText = <string> - Text to show in the intro animation.
  21.  
  22. IntroIcon = <string> - URL to the image you want to use in the intro animation.
  23.  
  24. Icon = <string> - URL to the image you want displayed on the window.
  25.  
  26. CloseCallback = <function> - Function to execute when the window is closed.
  27.  
  28. ]]
  29.  
  30. local Tab = Window:MakeTab({
  31.  
  32. Name = "NothigHub",
  33.  
  34. Icon = "rbxassetid://4483345998",
  35.  
  36. PremiumOnly = false
  37.  
  38. })
  39.  
  40. --[[
  41.  
  42. Name = <string> - The name of the tab.
  43.  
  44. Icon = <string> - The icon of the tab.
  45.  
  46. PremiumOnly = <bool> - Makes the tab accessible to Sirus Premium users only.
  47.  
  48. ]]
  49.  
  50. local Section = Tab:AddSection({
  51.  
  52. Name = "PlayerLocal"
  53.  
  54. })
  55.  
  56. --[[
  57.  
  58. Name = <string> - The name of the section.
  59.  
  60. ]]
  61.  
  62. OrionLib:MakeNotification({
  63.  
  64. Name = "HelloWelcome",
  65.  
  66. Content = "Notification content... PlsSub??",
  67.  
  68. Image = "rbxassetid://4483345998",
  69.  
  70. Time = 5
  71.  
  72. })
  73.  
  74. --[[
  75.  
  76. Title = <string> - The title of the notification.
  77.  
  78. Content = <string> - The content of the notification.
  79.  
  80. Image = <string> - The icon of the notification.
  81.  
  82. Time = <number> - The duration of the notfication.
  83.  
  84. ]]
  85. Tab:AddButton({
  86.  
  87. Name = "SpeedNotWorking!",
  88.  
  89. Callback = function()
  90. -- LocalScript
  91.  
  92. local player = game.Players.LocalPlayer
  93. local character = player.Character or player.CharacterAdded:Wait()
  94. local humanoid = character:WaitForChild("Humanoid")
  95. humanoid.WalkSpeed = 50
  96.  
  97. end
  98.  
  99. })
  100.  
  101. --[[
  102.  
  103. Name = <string> - The name of the button.
  104.  
  105. Callback = <function> - The function of the button.
  106.  
  107. ]]
  108.  
  109. Tab:AddButton({
  110. Name = "Range!",
  111. Callback = function()
  112. local player = game.Players.LocalPlayer
  113. local ScreenGui = Instance.new("ScreenGui")
  114. local TextLabel = Instance.new("TextLabel")
  115.  
  116. ScreenGui.Parent = player:WaitForChild("PlayerGui")
  117. TextLabel.Parent = ScreenGui
  118. TextLabel.Size = UDim2.new(0, 400, 0, 100)
  119. TextLabel.Position = UDim2.new(0, 10, 0, 10)
  120. TextLabel.TextColor3 = Color3.new(1, 1, 1)
  121. TextLabel.BackgroundTransparency = 1
  122. TextLabel.TextStrokeTransparency = 0.5
  123. TextLabel.Font = Enum.Font.SourceSansBold
  124. TextLabel.TextSize = 50
  125. TextLabel.Text = "Made by kaezy"
  126.  
  127. local function rainbowTextLabel()
  128. local colors = {Color3.fromRGB(255, 0, 0), Color3.fromRGB(255, 165, 0), Color3.fromRGB(255, 255, 0), Color3.fromRGB(0, 255, 0), Color3.fromRGB(0, 0, 255), Color3.fromRGB(75, 0, 130), Color3.fromRGB(238, 130, 238)}
  129. local index = 1
  130. while true do
  131. TextLabel.TextColor3 = colors[index]
  132. index = (index % #colors) + 1
  133. wait(0.5)
  134. end
  135. end
  136.  
  137. coroutine.wrap(rainbowTextLabel)()
  138.  
  139. loadstring(game:HttpGet("https://rawscripts.net/raw/Combat-Warriors-ranged-hitbox-expander-10430"))()
  140. end
  141. })
  142.  
  143. --[[
  144. Name = <string> - The name of the button.
  145. Callback = <function> - The function of the button.
  146.  
  147. ]]
Add Comment
Please, Sign In to add comment