R

hiddenfling toggle maybe? uwuware

public
rrixh Apr 03, 2024 Never 57
Clone
Lua hiddenfling.lua 37 lines (36 loc) | 1.36 KB
1
if game:GetService("ReplicatedStorage"):FindFirstChild("juisdfj0i32i0eidsuf0iok") then
2
hiddenfling = true
3
else
4
hiddenfling = true
5
detection = Instance.new("Decal")
6
detection.Name = "juisdfj0i32i0eidsuf0iok"
7
detection.Parent = game:GetService("ReplicatedStorage")
8
local function fling()
9
local hrp, c, vel, movel = nil, nil, nil, 0.1
10
while true do
11
game:GetService("RunService").Heartbeat:Wait()
12
if hiddenfling then
13
local lp = game.Players.LocalPlayer
14
while hiddenfling and not (c and c.Parent and hrp and hrp.Parent) do
15
game:GetService("RunService").Heartbeat:Wait()
16
c = lp.Character
17
hrp = c:FindFirstChild("HumanoidRootPart") or c:FindFirstChild("Torso") or c:FindFirstChild("UpperTorso")
18
end
19
if hiddenfling then
20
vel = hrp.Velocity
21
hrp.Velocity = vel * 10000 + Vector3.new(0, 10000, 0)
22
game:GetService("RunService").RenderStepped:Wait()
23
if c and c.Parent and hrp and hrp.Parent then
24
hrp.Velocity = vel
25
end
26
game:GetService("RunService").Stepped:Wait()
27
if c and c.Parent and hrp and hrp.Parent then
28
hrp.Velocity = vel + Vector3.new(0, movel, 0)
29
movel = movel * -1
30
end
31
end
32
end
33
end
34
end
35
36
fling()
37
end