Advertisement
Evil_fares

Untitled

Jun 17th, 2023
2,241
-1
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 13.26 KB | None | 0 1
  1. local ScreenGui = Instance.new("ScreenGui")
  2. local main = Instance.new("Frame")
  3. local label = Instance.new("TextLabel")
  4. local Hitbox =
  5. Instance.new("TextButton")
  6.  
  7. ScreenGui.Parent = game.CoreGui
  8.  
  9. main.Name = "main"
  10. main.Parent = ScreenGui
  11. main.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
  12. main.Position = UDim2.new(0.40427351, 0, 0.34591195, 0)
  13. main.Size = UDim2.new(0, 175, 0, 200)
  14. main.Active = true
  15. main.Draggable = true
  16.  
  17. label.Name = "label"
  18. label.Parent = main
  19. label.BackgroundColor3 = Color3.fromRGB(139,0,0)
  20. label.Size = UDim2.new(0, 175, 0, 20)
  21. label.Font = Enum.Font.SourceSans
  22. label.Text = " سكربت ايفل "
  23. label.TextColor3 = Color3.fromRGB(0, 0, 0)
  24. label.TextScaled = true
  25. label.TextSize = 5.000
  26. label.TextWrapped = true
  27.  
  28. Hitbox.Name = "صندوق حول العدو"
  29. Hitbox.Parent = main
  30. Hitbox.BackgroundColor3 = Color3.fromRGB(0, 0, 255)
  31. Hitbox.Position = UDim2.new(0.114285722, 0, 0.372448981, 0)
  32. Hitbox.Size = UDim2.new(0.17, 100, 0, 100)
  33. Hitbox.Font = Enum.Font.SourceSans
  34. Hitbox.Text = "اضغطني "
  35. Hitbox.TextColor3 = Color3.fromRGB(0, 0, 0)
  36. Hitbox.TextSize = 15.000
  37. Hitbox.MouseButton1Down:connect(function()
  38. local t = game:GetService("ReplicatedStorage")["Shared_Modules"].Tools["Wave 0"].Starfire["Shared_StarBolt"]
  39. local w = require(t)
  40. w.DEBOUNCE = .001
  41. w.DAMAGE = 400
  42.  
  43.  
  44.  
  45. --credits to the owner
  46.  
  47. for i, v in pairs(game:GetService('ReplicatedStorage')['Shared_Modules'].Tools:GetDescendants()) do
  48. if v:IsA('ModuleScript') then
  49. local Module = require(v)
  50. Module.DEBOUNCE = 0
  51. Module.DAMAGE = 999999999999
  52. end
  53. end
  54.  
  55. local function API_Check()
  56. if Drawing == nil then
  57. return "No"
  58. else
  59. return "Yes"
  60. end
  61. end
  62.  
  63. local Find_Required = API_Check()
  64.  
  65. if Find_Required == "No" then
  66. game:GetService("StarterGui"):SetCore("SendNotification",{
  67. Title = "Exunys Developer";
  68. Text = "Tracer script could not be loaded because your exploit is unsupported.";
  69. Duration = math.huge;
  70. Button1 = "OK"
  71. })
  72.  
  73. return
  74. end
  75.  
  76. local RunService = game:GetService("RunService")
  77. local Players = game:GetService("Players")
  78. local Camera = game:GetService("Workspace").CurrentCamera
  79. local UserInputService = game:GetService("UserInputService")
  80. local TestService = game:GetService("TestService")
  81.  
  82. local Typing = false
  83.  
  84. _G.SendNotifications = true -- If set to true then the script would notify you frequently on any changes applied and when loaded / errored. (If a game can detect this, it is recommended to set it to false)
  85. _G.DefaultSettings = false -- If set to true then the tracer script would run with default settings regardless of any changes you made.
  86.  
  87. _G.TeamCheck = false -- If set to true then the script would create tracers only for the enemy team members.
  88.  
  89. --[!]-- ONLY ONE OF THESE VALUES SHOULD BE SET TO TRUE TO NOT ERROR THE SCRIPT --[!]--
  90.  
  91. _G.FromMouse = false -- If set to true, the tracers will come from the position of your mouse curson on your screen.
  92. _G.FromCenter = false -- If set to true, the tracers will come from the center of your screen.
  93. _G.FromBottom = true -- If set to true, the tracers will come from the bottom of your screen.
  94.  
  95. _G.TracersVisible = true -- If set to true then the tracers will be visible and vice versa.
  96. _G.TracerColor = Color3.fromRGB(255, 80, 10) -- The color that the tracers would appear as.
  97. _G.TracerThickness = 1 -- The thickness of the tracers.
  98. _G.TracerTransparency = 0.7 -- The transparency of the tracers.
  99.  
  100. _G.ModeSkipKey = Enum.KeyCode.E -- The key that changes between modes that indicate where will the tracers come from.
  101. _G.DisableKey = Enum.KeyCode.Q -- The key that disables / enables the tracers.
  102.  
  103. local function CreateTracers()
  104. for _, v in next, Players:GetPlayers() do
  105. if v.Name ~= game.Players.LocalPlayer.Name then
  106. local TracerLine = Drawing.new("Line")
  107.  
  108. RunService.RenderStepped:Connect(function()
  109. if workspace:FindFirstChild(v.Name) ~= nil and workspace[v.Name]:FindFirstChild("HumanoidRootPart") ~= nil then
  110. local HumanoidRootPart_Position, HumanoidRootPart_Size = workspace[v.Name].HumanoidRootPart.CFrame, workspace[v.Name].HumanoidRootPart.Size * 1
  111. local Vector, OnScreen = Camera:WorldToViewportPoint(HumanoidRootPart_Position * CFrame.new(0, -HumanoidRootPart_Size.Y, 0).p)
  112.  
  113. TracerLine.Thickness = _G.TracerThickness
  114. TracerLine.Transparency = _G.TracerTransparency
  115. TracerLine.Color = _G.TracerColor
  116.  
  117. if _G.FromMouse == true and _G.FromCenter == false and _G.FromBottom == false then
  118. TracerLine.From = Vector2.new(UserInputService:GetMouseLocation().X, UserInputService:GetMouseLocation().Y)
  119. elseif _G.FromMouse == false and _G.FromCenter == true and _G.FromBottom == false then
  120. TracerLine.From = Vector2.new(Camera.ViewportSize.X / 2, Camera.ViewportSize.Y / 2)
  121. elseif _G.FromMouse == false and _G.FromCenter == false and _G.FromBottom == true then
  122. TracerLine.From = Vector2.new(Camera.ViewportSize.X / 2, Camera.ViewportSize.Y)
  123. end
  124.  
  125. if OnScreen == true then
  126. TracerLine.To = Vector2.new(Vector.X, Vector.Y)
  127. if _G.TeamCheck == true then
  128. if Players.LocalPlayer.Team ~= v.Team then
  129. TracerLine.Visible = _G.TracersVisible
  130. else
  131. TracerLine.Visible = false
  132. end
  133. else
  134. TracerLine.Visible = _G.TracersVisible
  135. end
  136. else
  137. TracerLine.Visible = false
  138. end
  139. else
  140. TracerLine.Visible = false
  141. end
  142. end)
  143.  
  144. Players.PlayerRemoving:Connect(function()
  145. TracerLine.Visible = false
  146. end)
  147. end
  148. end
  149.  
  150. Players.PlayerAdded:Connect(function(Player)
  151. Player.CharacterAdded:Connect(function(v)
  152. if v.Name ~= game.Players.LocalPlayer.Name then
  153. local TracerLine = Drawing.new("Line")
  154.  
  155. RunService.RenderStepped:Connect(function()
  156. if workspace:FindFirstChild(v.Name) ~= nil and workspace[v.Name]:FindFirstChild("HumanoidRootPart") ~= nil then
  157. local HumanoidRootPart_Position, HumanoidRootPart_Size = workspace[v.Name].HumanoidRootPart.CFrame, workspace[v.Name].HumanoidRootPart.Size * 1
  158. local Vector, OnScreen = Camera:WorldToViewportPoint(HumanoidRootPart_Position * CFrame.new(0, -HumanoidRootPart_Size.Y, 0).p)
  159.  
  160. TracerLine.Thickness = _G.TracerThickness
  161. TracerLine.Transparency = _G.TracerTransparency
  162. TracerLine.Color = _G.TracerColor
  163.  
  164. if _G.FromMouse == true and _G.FromCenter == false and _G.FromBottom == false then
  165. TracerLine.From = Vector2.new(UserInputService:GetMouseLocation().X, UserInputService:GetMouseLocation().Y)
  166. elseif _G.FromMouse == false and _G.FromCenter == true and _G.FromBottom == false then
  167. TracerLine.From = Vector2.new(Camera.ViewportSize.X / 2, Camera.ViewportSize.Y / 2)
  168. elseif _G.FromMouse == false and _G.FromCenter == false and _G.FromBottom == true then
  169. TracerLine.From = Vector2.new(Camera.ViewportSize.X / 2, Camera.ViewportSize.Y)
  170. end
  171.  
  172. if OnScreen == true then
  173. TracerLine.To = Vector2.new(Vector.X, Vector.Y)
  174. if _G.TeamCheck == true then
  175. if Players.LocalPlayer.Team ~= Player.Team then
  176. TracerLine.Visible = _G.TracersVisible
  177. else
  178. TracerLine.Visible = false
  179. end
  180. else
  181. TracerLine.Visible = _G.TracersVisible
  182. end
  183. else
  184. TracerLine.Visible = false
  185. end
  186. else
  187. TracerLine.Visible = false
  188. end
  189. end)
  190.  
  191. Players.PlayerRemoving:Connect(function()
  192. TracerLine.Visible = false
  193. end)
  194. end
  195. end)
  196. end)
  197. end
  198.  
  199. UserInputService.TextBoxFocused:Connect(function()
  200. Typing = true
  201. end)
  202.  
  203. UserInputService.TextBoxFocusReleased:Connect(function()
  204. Typing = false
  205. end)
  206.  
  207. UserInputService.InputBegan:Connect(function(Input)
  208. if Input.KeyCode == _G.ModeSkipKey and Typing == false then
  209. if _G.FromMouse == true and _G.FromCenter == false and _G.FromBottom == false and _G.TracersVisible == true then
  210. _G.FromCenter = false
  211. _G.FromBottom = true
  212. _G.FromMouse = false
  213.  
  214. if _G.SendNotifications == true then
  215. game:GetService("StarterGui"):SetCore("SendNotification",{
  216. Title = "Exunys Developer";
  217. Text = "Tracers will be now coming from the bottom of your screen (Mode 1)";
  218. Duration = 5;
  219. })
  220. end
  221. elseif _G.FromMouse == false and _G.FromCenter == false and _G.FromBottom == true and _G.TracersVisible == true then
  222. _G.FromCenter = true
  223. _G.FromBottom = false
  224. _G.FromMouse = false
  225.  
  226. if _G.SendNotifications == true then
  227. game:GetService("StarterGui"):SetCore("SendNotification",{
  228. Title = "Exunys Developer";
  229. Text = "Tracers will be now coming from the center of your screen (Mode 2)";
  230. Duration = 5;
  231. })
  232. end
  233. elseif _G.FromMouse == false and _G.FromCenter == true and _G.FromBottom == false and _G.TracersVisible == true then
  234. _G.FromCenter = false
  235. _G.FromBottom = false
  236. _G.FromMouse = true
  237.  
  238. if _G.SendNotifications == true then
  239. game:GetService("StarterGui"):SetCore("SendNotification",{
  240. Title = "Exunys Developer";
  241. Text = "Tracers will be now coming from the position of your mouse cursor on your screen (Mode 3)";
  242. Duration = 5;
  243. })
  244. end
  245. end
  246. elseif Input.KeyCode == _G.DisableKey and Typing == false then
  247. _G.TracersVisible = not _G.TracersVisible
  248.  
  249. if _G.SendNotifications == true then
  250. game:GetService("StarterGui"):SetCore("SendNotification",{
  251. Title = "Exunys Developer";
  252. Text = "The tracers' visibility is now set to "..tostring(_G.TracersVisible)..".";
  253. Duration = 5;
  254. })
  255. end
  256. end
  257. end)
  258.  
  259. if _G.DefaultSettings == true then
  260. _G.TeamCheck = false
  261. _G.FromMouse = false
  262. _G.FromCenter = false
  263. _G.FromBottom = true
  264. _G.TracersVisible = true
  265. _G.TracerColor = Color3.fromRGB(40, 90, 255)
  266. _G.TracerThickness = 1
  267. _G.TracerTransparency = 0.5
  268. _G.ModeSkipKey = Enum.KeyCode.E
  269. _G.DisableKey = Enum.KeyCode.Q
  270. end
  271.  
  272. local Success, Errored = pcall(function()
  273. CreateTracers()
  274. end)
  275.  
  276. if Success and not Errored then
  277. if _G.SendNotifications == true then
  278. game:GetService("StarterGui"):SetCore("SendNotification",{
  279. Title = "ايفل المطور";
  280. Text = "بنجاح السكربت تشغيل تم.";
  281. Duration = 5;
  282. })
  283. end
  284. elseif Errored and not Success then
  285. if _G.SendNotifications == true then
  286. game:GetService("StarterGui"):SetCore("SendNotification",{
  287. Title = "ايفل المطور";
  288. Text = "السكربت تشغيل في خطا";
  289. Duration = 5;
  290. })
  291. end
  292. TestService:Message("The tracer script has errored, please notify Exunys with the following information :")
  293. warn(Errored)
  294. print("!! IF THE ERROR IS A FALSE POSITIVE (says that a player cannot be found) THEN DO NOT BOTHER !!")
  295. end
  296.  
  297. _G.HeadSize = 30
  298.  
  299. _G.Disabled = true
  300.  
  301.  
  302. game:GetService('RunService').RenderStepped:connect(function()
  303. if _G.Disabled then
  304. for i,v in next, game:GetService('Players'):GetPlayers() do
  305. if v.Name ~= game:GetService('Players').LocalPlayer.Name then
  306. pcall(function()
  307. v.Character.HumanoidRootPart.Size = Vector3.new(_G.HeadSize,_G.HeadSize,_G.HeadSize)
  308. v.Character.HumanoidRootPart.Transparency = 0.8
  309. v.Character.HumanoidRootPart.BrickColor = BrickColor.new("Really black")
  310. v.Character.HumanoidRootPart.Material = "Neon"
  311. v.Character.HumanoidRootPart.CanCollide = false
  312. end)
  313. end
  314. end
  315. end
  316. end)
  317. end)
  318. loadstring(game:HttpGet('https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source'))()
  319.  
Tags: Roblox
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement