Advertisement
uoryetwq

스크립트

Jan 31st, 2025 (edited)
178
0
Never
1
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.02 KB | None | 0 0
  1. 메가개꼭지스크립트
  2. loadstring(game:HttpGet("https://pastebin.com/raw/yS9nAtaA"))()
  3.  
  4. 살보결
  5. _G.Circlepartsblock = 125
  6. loadstring(game:HttpGet("https://raw.githubusercontent.com/zk0o/function-table-return/refs/heads/main/end"))()
  7.  
  8. 키:OpScriptsLuaCode
  9.  
  10. 더블점프
  11. loadstring(game:HttpGet("https://pastebin.com/raw/0Hheya9T", true))()
  12.  
  13. 프리즌라이프 FE칼 스크립트
  14. loadstring(game:HttpGet("https://pastebin.com/raw/AZVi2tuK"))()
  15.  
  16. 브링올
  17. local Players = game:GetService("Players")
  18. local player = Players.LocalPlayer
  19. local character = player.Character or player.CharacterAdded:Wait()
  20. local rootPart = character:WaitForChild("HumanoidRootPart")
  21.  
  22. -- 자신의 HumanoidRootPart 위치 가져오기
  23. local teleportPosition = rootPart.CFrame
  24.  
  25. -- 모든 플레이어의 캐릭터를 자신의 위치로 이동 (로컬에서만 보임)
  26. for _, targetPlayer in pairs(Players:GetPlayers()) do
  27. if targetPlayer ~= player then -- 자신 제외
  28. local targetCharacter = targetPlayer.Character
  29. if targetCharacter and targetCharacter:FindFirstChild("HumanoidRootPart") then
  30. targetCharacter.HumanoidRootPart.CFrame = teleportPosition
  31. end
  32. end
  33. end
  34.  
  35. 쌈뽕타워 올킬
  36. -- .gg/localx
  37. local Players = game:GetService('Players')
  38. local client = Players.LocalPlayer
  39.  
  40. local function dbug(txt)
  41. print(`[LocalX]: {txt}`)
  42. end
  43.  
  44. dbug('칼 찾는중...')
  45. local gotsword = false
  46. local sword = nil
  47.  
  48. local findsword = workspace.ChildAdded:Connect(function(obj)
  49. if obj:IsA('Tool') and obj:WaitForChild('Handle') then
  50. dbug('칼 얻음!')
  51. client.Character.Humanoid:EquipTool(obj)
  52. gotsword = true
  53. sword = obj
  54. end
  55. end)
  56. repeat task.wait() until gotsword
  57. findsword:Disconnect()
  58.  
  59. print(sword)
  60.  
  61. while task.wait() do
  62. for _, plr in ipairs(Players:GetPlayers()) do
  63. if plr ~= client then
  64. pcall(function()
  65. firetouchinterest(sword.Handle, plr.Character:FindFirstChild('Head'), 0)
  66. task.wait()
  67. firetouchinterest(sword.Handle, plr.Character:FindFirstChild('Head'), 1)
  68.  
  69. end)
  70. end
  71. end
  72. end
  73.  
  74.  
Advertisement
Comments
Add Comment
Please, Sign In to add comment
Advertisement