1 | -- loadstring(game:HttpGet("https://pastecode.dev/raw/pgqkl5pv/paste1.txt"))() |
2 | |
3 | local player = game.Players.LocalPlayer |
4 | local function simulateTouch() |
5 | local character = player.Character or player.CharacterAdded:Wait() |
6 | local humanoidRootPart = character:WaitForChild("HumanoidRootPart") |
7 | local buttonPart = workspace.Lobby.ToolButtons.Health.Swordd |
8 | |
9 | firetouchinterest(humanoidRootPart, buttonPart, 0) |
10 | wait(0.1) |
11 | firetouchinterest(humanoidRootPart, buttonPart, 1) |
12 | end |
13 | |
14 | simulateTouch() |
15 | |
16 | player.CharacterAdded:Connect(function() |
17 | wait(1) |
18 | simulateTouch() |
19 | end) |