Description
troll people with this emote that works only in r6 and everyone can see it!
a bit too high to be a normal salute
local player = game.Players.LocalPlayer
local character = player.Character
local humanoid = character:FindFirstChildWhichIsA("Humanoid")
local animator = humanoid:FindFirstChildWhichIsA("Animator")
local animation = loadstring(game:HttpGet("https://pastebin.com/raw/Dw17vL2q"))()
if humanoid.RigType == Enum.HumanoidRigType.R15 then
game:GetService("StarterGui"):SetCore("SendNotification",{["Title"] = "Warning", ["Text"] = "Sorry this only works with R6!"})
else
local anim = animator:LoadAnimation(animation)
anim:Play()
anim.TimePosition = 0.1
anim:AdjustSpeed(0)
end