Egorikusa

teest

May 12th, 2023 (edited)
422
1
Never
1
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 7.71 KB | None | 1 0
  1. local OrionLib = loadstring(game:HttpGet(('https://raw.githubusercontent.com/shlexware/Orion/main/source')))()
  2. -- IMPORTANT LOCALS
  3. local PartnerRank = "🔥Partner"
  4. local DeveloperRank = "⚒️Developer"
  5. local ModeratorRank = "🔧Moderator"
  6. local LeaderboardRank = "🌍#82"
  7. local Wow = " "
  8. local speed = (game.Players.LocalPlayer.Character.Humanoid.WalkSpeed)
  9. local jump = (game.Players.LocalPlayer.Character.Humanoid.JumpPower)
  10. Username = game.Players.LocalPlayer.DisplayName
  11. SpamTime = 10
  12. -- SCRIPT
  13. local Window = OrionLib:MakeWindow({Name = "Fake Tags", HidePremium = false, SaveConfig = true, ConfigFolder = "Egorikusa Fake Tags"})
  14.  
  15. local Tab = Window:MakeTab({
  16. Name = "Misc Scripts",
  17. Icon = "rbxassetid://4483345998",
  18. PremiumOnly = false
  19. })
  20.  
  21. Tab:AddButton({
  22. Name = "Anti Lag",
  23. Callback = function()
  24. local lighting = game.Lighting
  25. local terrain = game.Workspace.Terrain
  26. terrain.WaterWaveSize = 0
  27. terrain.WaterWaveSpeed = 0
  28. terrain.WaterReflectance = 0
  29. terrain.WaterTransparency = 0
  30. lighting.GlobalShadows = false
  31. lighting.FogStart = 0
  32. lighting.FogEnd = 0
  33. lighting.Brightness = 0
  34. settings().Rendering.QualityLevel = "Level01"
  35.  
  36. for i, v in pairs(game:GetDescendants()) do
  37. if v:IsA("Part") or v:IsA("Union") or v:IsA("CornerWedgePart") or v:IsA("TrussPart") then
  38. v.Material = "Plastic"
  39. v.Reflectance = 0
  40. elseif v:IsA("ParticleEmitter") or v:IsA("Trail") then
  41. v.Lifetime = NumberRange.new(0)
  42. elseif v:IsA("Explosion") then
  43. v.BlastPressure = 1
  44. v.BlastRadius = 1
  45. elseif v:IsA("Fire") or v:IsA("SpotLight") or v:IsA("Smoke") or v:IsA("Sparkles") then
  46. v.Enabled = false
  47. elseif v:IsA("MeshPart") then
  48. v.Material = "Plastic"
  49. v.Reflectance = 0
  50. end
  51. end
  52.  
  53. for i, e in pairs(lighting:GetChildren()) do
  54. if e:IsA("BlurEffect") or e:IsA("SunRaysEffect") or e:IsA("ColorCorrectionEffect") or e:IsA("BloomEffect") or e:IsA("DepthOfFieldEffect") then
  55. e.Enabled = false
  56. end
  57. end
  58. end
  59. })
  60.  
  61. Tab:AddButton({
  62. Name = "Visual Hoverboards",
  63. Callback = function()
  64. local sex1 = require(game:GetService("ReplicatedStorage").Library.Client.Save).Get()
  65. sex1.Hoverboards = {}
  66. for i,v in pairs(game:GetService("ReplicatedStorage")["__DIRECTORY"].Hoverboards:GetChildren())do
  67. if v:IsA("Folder") then
  68. table.insert(sex1.Hoverboards, v.Name)
  69. end
  70. end
  71. getsenv(game.Players.LocalPlayer.PlayerScripts.Scripts.GUIs.Hoverboards).Update()
  72. getsenv(game.Players.LocalPlayer.PlayerScripts.Scripts.GUIs.Hoverboards).Equip = function(board)
  73. sex1.EquippedHoverboard = board
  74. getsenv(game.Players.LocalPlayer.PlayerScripts.Scripts.GUIs.Hoverboards).Update()
  75. end
  76. end
  77. })
  78.  
  79. Tab:AddSlider({
  80. Name = "Slider",
  81. Min = 1,
  82. Max = 250,
  83. Default = 24,
  84. Color = Color3.fromRGB(255,255,255),
  85. Increment = 1,
  86. ValueName = "speed",
  87. Callback = function(Value)
  88. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = (Value)
  89. end
  90. })
  91.  
  92. Tab:AddSlider({
  93. Name = "Slider",
  94. Min = 1,
  95. Max = 250,
  96. Default = 24,
  97. Color = Color3.fromRGB(255,255,255),
  98. Increment = 1,
  99. ValueName = "jump",
  100. Callback = function(Value)
  101. game.Players.LocalPlayer.Character.Humanoid.JumpPower = (Value)
  102. end
  103. })
  104.  
  105. local Tab = Window:MakeTab({
  106. Name = "Fake Tags",
  107. Icon = "rbxassetid://4483345998",
  108. PremiumOnly = false
  109. })
  110.  
  111. Tab:AddButton({
  112. Name = "Basic Settings",
  113. Callback = function()
  114. Rank = PartnerRank
  115. Message = "SIGNING HUGES TRADE ME"
  116. SpamTime = 10
  117. Username = game.Players.LocalPlayer.DisplayName
  118. PlayerMessage = "omg"
  119. end
  120. })
  121.  
  122. Tab:AddDropdown({
  123. Name = "Rank Picker",
  124. Default = "Partner",
  125. Options = {"Partner","Developer","Moderator","Leaderboard"},
  126. Callback = function(Value)
  127. if Value == 'Partner' then
  128. Rank = PartnerRank
  129. elseif Value == 'Developer' then
  130. Rank = DeveloperRank
  131. elseif Value == 'Moderator' then
  132. Rank = ModeratorRank
  133. elseif Value == 'Leaderboard' then
  134. Rank = LeaderboardRank
  135. end
  136. end
  137. })
  138.  
  139. Tab:AddTextbox({
  140. Name = "YOUR Message",
  141. Default = "",
  142. TextDisappear = true,
  143. Callback = function(Text)
  144. PlayerMessage = Text
  145. end
  146. })
  147.  
  148. Tab:AddTextbox({
  149. Name = "Dummy Username",
  150. Default = "",
  151. TextDisappear = true,
  152. Callback = function(User)
  153. Username = User
  154. end
  155. })
  156.  
  157. Tab:AddTextbox({
  158. Name = "Dummy Message",
  159. Default = "",
  160. TextDisappear = true,
  161. Callback = function(Text)
  162. Message = Text
  163. end
  164. })
  165.  
  166. Tab:AddButton({
  167. Name = "Send Message",
  168. Callback = function()
  169. if Rank and Message then -- Check that Rank and Message have been properly assigned values
  170. game.ReplicatedStorage.DefaultChatSystemChatEvents.SayMessageRequest:FireServer(""..PlayerMessage..""..Wow.."["..Rank.."] ["..Username.."]: "..Message, "All")
  171. end
  172. end
  173. })
  174.  
  175. Tab:AddSlider({
  176. Name = "Spam Speed",
  177. Min = 1,
  178. Max = 60,
  179. Default = 10,
  180. Color = Color3.fromRGB(255,0,255),
  181. Increment = 1,
  182. ValueName = "Seconds",
  183. Callback = function(Value)
  184. SpamTime = (Value)
  185. end
  186. })
  187.  
  188. Tab:AddToggle({
  189. Name = "Message Spam",
  190. Default = false,
  191. Callback = function(Value)
  192. task.spawn(function()
  193. getgenv().toggleLoop = Value
  194. while getgenv().toggleLoop and task.wait() do
  195. game.ReplicatedStorage.DefaultChatSystemChatEvents.SayMessageRequest:FireServer(""..Wow.."["..Rank.."] ["..Username.."]: "..Message.."", "All")
  196. wait(SpamTime)
  197. end
  198. end)
  199. end
  200. })
  201.  
  202. Tab:AddButton({
  203. Name = "Serverhop (big servers)",
  204. Callback = function()
  205. local function serverhop()
  206. print("Server hop is triggered")
  207. local response = game.HttpService:JSONDecode(game:HttpGet("https://games.roblox.com/v1/games/" .. game.PlaceId .. "/servers/Public?sortOrder=Desc&limit=50"))
  208. if response and response["data"] then
  209. for i, v in pairs(response["data"]) do
  210. if v["playing"] ~= v["maxPlayers"] then
  211. game:GetService('TeleportService'):TeleportToPlaceInstance(game.PlaceId, v["id"])
  212. break
  213. end
  214. end
  215. else
  216. print("Error: failed to decode JSON response or missing data field.")
  217. end
  218. end
  219. while true do
  220. wait(0.1)
  221. serverhop()
  222. end
  223. end
  224. })
  225.  
  226. Tab:AddButton({
  227. Name = "Serverhop (small servers)",
  228. Callback = function()
  229. local function serverhop1()
  230. print("Server hop is triggered")
  231. local response = game.HttpService:JSONDecode(game:HttpGet("https://games.roblox.com/v1/games/" .. game.PlaceId .. "/servers/Public?sortOrder=Asc&limit=50"))
  232. if response and response["data"] then
  233. for i, v in pairs(response["data"]) do
  234. if v["playing"] ~= v["maxPlayers"] then
  235. game:GetService('TeleportService'):TeleportToPlaceInstance(game.PlaceId, v["id"])
  236. break
  237. end
  238. end
  239. else
  240. print("Error: failed to decode JSON response or missing data field.")
  241. end
  242. end
  243. while true do
  244. wait(0.1)
  245. serverhop1()
  246. end
  247. end
  248. })
  249.  
  250.  
  251. local Tab = Window:MakeTab({
  252. Name = "For Devs (ignore)",
  253. Icon = "rbxassetid://4483345998",
  254. PremiumOnly = false
  255. })
  256.  
  257. Tab:AddButton({
  258. Name = "print",
  259. Callback = function()
  260. print("Rank is "..Rank.."")
  261. print("Space is "..Wow.."")
  262. print("Username is "..Username.."")
  263. print("dummy message is "..Message.."")
  264. print("your message is "..PlayerMessage.."")
  265. print("spam speed is "..SpamTime.."")
  266. end
  267. })
Advertisement
Comments
  • User was banned
Add Comment
Please, Sign In to add comment