YM2323

Untitled

Jun 15th, 2023
30
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.01 KB | None | 0 0
  1. local Rayfield = loadstring(game:HttpGet('https://raw.githubusercontent.com/shlexware/Rayfield/main/source'))()
  2. getgenv().SecureMode = true
  3. local Window = Rayfield:CreateWindow({
  4. Name = "Voxle Hub",
  5. LoadingTitle = "Voxle Hub",
  6. LoadingSubtitle = "by Voxle",
  7. ConfigurationSaving = {
  8. Enabled = true,
  9. FolderName = nil,
  10. FileName = "Voxle Hub"
  11. },
  12. Discord = {
  13. Enabled = true,
  14. Invite = "RSsC4ATvkj",
  15. RememberJoins = true
  16. },
  17. })
  18. local Tab = Window:CreateTab("Main", 4483362458) -- Title, Image
  19. Tab:CreateToggle({
  20. Name = "Auto Coins",
  21. CurrentValue = false,
  22. Flag = "Toggle1",
  23. Callback = function(Value)
  24. a = Value
  25. while a do task.wait()
  26. pcall(function()
  27. for i, v in next, game:GetService("Workspace").CoinContainer:GetDescendants() do
  28. if v.Name == "TouchInterest" then
  29. firetouchinterest(game.Players.LocalPlayer.Character.HumanoidRootPart, v.Parent, 0)
  30. firetouchinterest(game.Players.LocalPlayer.Character.HumanoidRootPart, v.Parent, 1)
  31. task.wait(0.1)
  32. end
  33. end
  34. end)
  35. end
  36. end,
  37. })
Add Comment
Please, Sign In to add comment