Advertisement
RageRelicYT

script

Feb 10th, 2023
39
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.87 KB | None | 0 0
  1. local gui = Instance.new("ScreenGui")
  2. local main = Instance.new("Frame")
  3. local topbar = Instance.new("Frame")
  4. local UICorner = Instance.new("UICorner")
  5. local TextLabel = Instance.new("TextLabel")
  6. local UICorner_2 = Instance.new("UICorner")
  7. local text = Instance.new("TextLabel")
  8. gui.Name = "gui"
  9. gui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  10. gui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  11. main.Name = "main"
  12. main.Parent = gui
  13. main.Active = true
  14. main.BackgroundColor3 = Color3.fromRGB(185, 234, 255)
  15. main.BorderSizePixel = 0
  16. main.ClipsDescendants = true
  17. main.Position = UDim2.new(0.730223119, 0, 0.149625942, 0)
  18. main.Size = UDim2.new(0, 256, 0, 119)
  19. topbar.Name = "topbar"
  20. topbar.Parent = main
  21. topbar.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  22. topbar.BorderColor3 = Color3.fromRGB(53, 53, 53)
  23. topbar.Position = UDim2.new(0, 0, -0.234999999, 0)
  24. topbar.Size = UDim2.new(0, 256, 0, 28)
  25. UICorner.CornerRadius = UDim.new(0.100000001, 0)
  26. UICorner.Parent = topbar
  27. TextLabel.Parent = topbar
  28. TextLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  29. TextLabel.BorderSizePixel = 0
  30. TextLabel.Size = UDim2.new(0, 256, 0, 28)
  31. TextLabel.Font = Enum.Font.Gotham
  32. TextLabel.Text = "Anti-afk"
  33. TextLabel.TextColor3 = Color3.fromRGB(0, 0, 0)
  34. TextLabel.TextSize = 13.000
  35. UICorner_2.CornerRadius = UDim.new(0.100000001, 0)
  36. UICorner_2.Parent = main
  37. text.Name = "text"
  38. text.Parent = main
  39. text.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  40. text.BackgroundTransparency = 1.000
  41. text.Position = UDim2.new(0, 0, 0.000294148427, 0)
  42. text.Size = UDim2.new(0, 256, 0, 118)
  43. text.Font = Enum.Font.SourceSansBold
  44. text.Text = "You are being protected. "
  45. text.TextColor3 = Color3.fromRGB(0, 0, 0)
  46. text.TextSize = 26.000
  47. local function JYVORTP_fake_script() -- topbar.anim
  48. local script = Instance.new('LocalScript', topbar)
  49.  
  50. local ts = game:GetService("TweenService")
  51. local bar = script.Parent
  52.  
  53. bar:TweenPosition(
  54. "0,0, 0,0",
  55. "In",
  56. "Sine",
  57. 0.5,
  58. false
  59. )
  60. end
  61. coroutine.wrap(JYVORTP_fake_script)()
  62. local function AITJQH_fake_script() -- main.DragScript
  63. local script = Instance.new('LocalScript', main)
  64.  
  65. local UIS = game:GetService('UserInputService')
  66. local frame = script.Parent
  67. local dragToggle = nil
  68. local dragSpeed = 0.25
  69. local dragStart = nil
  70. local startPos = nil
  71.  
  72. local function updateInput(input)
  73. local delta = input.Position - dragStart
  74. local position = UDim2.new(startPos.X.Scale, startPos.X.Offset + delta.X,
  75. startPos.Y.Scale, startPos.Y.Offset + delta.Y)
  76. game:GetService('TweenService'):Create(frame, TweenInfo.new(dragSpeed), {Position = position}):Play()
  77. end
  78.  
  79. frame.InputBegan:Connect(function(input)
  80. if (input.UserInputType == Enum.UserInputType.MouseButton1 or input.UserInputType == Enum.UserInputType.Touch) then
  81. dragToggle = true
  82. dragStart = input.Position
  83. startPos = frame.Position
  84. input.Changed:Connect(function()
  85. if input.UserInputState == Enum.UserInputState.End then
  86. dragToggle = false
  87. end
  88. end)
  89. end
  90. end)
  91.  
  92. UIS.InputChanged:Connect(function(input)
  93. if input.UserInputType == Enum.UserInputType.MouseMovement or input.UserInputType == Enum.UserInputType.Touch then
  94. if dragToggle then
  95. updateInput(input)
  96. end
  97. end
  98. end)
  99.  
  100. end
  101. coroutine.wrap(AITJQH_fake_script)()
  102. local function JKNIT_fake_script() -- text.rainbow
  103. local script = Instance.new('LocalScript', text)
  104.  
  105. local text = script.Parent
  106. local add = 1
  107.  
  108. text:TweenSizeAndPosition(
  109. "0, 256, 0, 91",
  110. "0, 0,0.235, 0",
  111. "In",
  112. "Sine",
  113. 0.5,
  114. false
  115. )
  116.  
  117. wait(1)
  118. local k = 1
  119. while k <= 255 do
  120. text.TextColor3 = Color3.new(k/255,0/255,0/255)
  121. k = k + add
  122. wait()
  123. end
  124. while true do
  125. k = 1
  126. while k <= 255 do
  127. text.TextColor3 = Color3.new(255/255,k/255,0/255)
  128. k = k + add
  129. wait()
  130. end
  131. k = 1
  132. while k <= 255 do
  133. text.TextColor3 = Color3.new(255/255 - k/255,255/255,0/255)
  134. k = k + add
  135. wait()
  136. end
  137. k = 1
  138. while k <= 255 do
  139. text.TextColor3 = Color3.new(0/255,255/255,k/255)
  140. k = k + add
  141. wait()
  142. end
  143. k = 1
  144. while k <= 255 do
  145. text.TextColor3 = Color3.new(0/255,255/255 - k/255,255/255)
  146. k = k + add
  147. wait()
  148. end
  149. k = 1
  150. while k <= 255 do
  151. text.TextColor3 = Color3.new(k/255,0/255,255/255)
  152. k = k + add
  153. wait()
  154. end
  155. k = 1
  156. while k <= 255 do
  157. text.TextColor3 = Color3.new(255/255,0/255,255/255 - k/255)
  158. k = k + add
  159. wait()
  160. end
  161. while k <= 255 do
  162. text.TextColor3 = Color3.new(255/255 - k/255,0/255,0/255)
  163. k = k + add
  164. wait()
  165. end
  166. end
  167. end
  168. coroutine.wrap(JKNIT_fake_script)()
  169. local function BCUDHY_fake_script() -- gui.antiafk
  170. local script = Instance.new('LocalScript', gui)
  171.  
  172. local guy = game:service "VirtualUser"
  173. game:service "Players".LocalPlayer.Idled:connect(function()
  174. guy:CaptureController()
  175. guy:ClickButton2(Vector2.new())
  176. wait(2)
  177. end)
  178. end
  179. coroutine.wrap(BCUDHY_fake_script)()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement