FE Jerk Off 💦〡R6 & R15 thumbnail
157 Views
Grátis
Key
Universal

FE Jerk Off 💦〡R6 & R15

52d atrás

Jogos Suportados

Este script é Universal.

Projetado para funcionar na maioria dos jogos Roblox.

Descrição

Nenhuma descrição fornecida.

Tags

jerkofftrolljerkfer6r15

Script Code

1local plr = game:GetService("Players").LocalPlayer
2local char = plr.Character or plr.CharacterAdded:Wait()
3local hum = char:FindFirstChild("Humanoid") or char:WaitForChild("Humanoid")
4local anim = hum:FindFirstChildOfClass("Animator") or hum:WaitForChild("Animator")
5local pack = plr:FindFirstChild("Backpack") or plr:WaitForChild("Backpack")
6
7if workspace:FindFirstChild("aaa") then
8	workspace:FindFirstChild("aaa"):Destroy()
9end
10
11local function getmodel()
12	return hum.RigType == Enum.HumanoidRigType.R15 and "R15" or "R6"
13end
14
15local function Notify(Title, Text, Duration)
16	game:GetService('StarterGui'):SetCore('SendNotification', {
17        Title = Title,
18        Text = Text or '',
19        Duration = Duration}
20    )
21end	
22
23Notify("Script Made By Sai", "XD" 20)
24
25local animation = Instance.new("Animation")
26animation.Name = "aaa"
27animation.Parent = workspace
28
29animation.AnimationId = getmodel() == "R15" and "rbxassetid://698251653" or "rbxassetid://72042024"
30
31local tool = Instance.new("Tool")
32tool.Name = "Jerk"
33tool.RequiresHandle = false
34tool.Parent = pack
35
36local doing = false
37local animtrack = nil
38
39tool.Equipped:Connect(function()
40	doing = true
41	while doing do
42		if not animtrack then
43			animtrack = anim:LoadAnimation(animation)
44		end
45
46		animtrack:Play()
47		animtrack:AdjustSpeed(0.7)
48		animtrack.TimePosition = 0.6
49
50		task.wait(0.1)
51		while doing and animtrack and animtrack.TimePosition < 0.7 do
52			task.wait(0.05)
53		end
54
55		if animtrack then
56			animtrack:Stop()
57			animtrack:Destroy()
58			animtrack = nil
59		end
60	end
61end)
62
63tool.Unequipped:Connect(function()
64	doing = false
65	if animtrack then
66		animtrack:Stop()
67		animtrack:Destroy()
68		animtrack = nil
69	end
70end)
71
72hum.Died:Connect(function()
73	doing = false
74	if animtrack then
75		animtrack:Stop()
76		animtrack:Destroy()
77		animtrack = nil
78	end
79end)
80
81--✔️