Okay I changed to R6 and did everything you said but no animation…
what is emote script??
abcdefg
Do you mind if I get edit permissions on your game, or at least send me the game file in messages, so I can look at it better. I don’t want to sit here all day.
Does your custom character even have an animator? If it doesn’t, no animations will play. Roblox migrated the Animate script over to Animator instead of Humanoid:LoadAnimation()
i dont know where the animator is …
@Ioveczour @The_flyingMan716 @Vyntrick @12Strings
Thanks for helping me and devoting your time. I really appreciate it.
But… I have to go now, I will be back later
This should work: Gamepass Prompt Testing.rbxl (55.4 KB)
Just open the file, and publish it to the place. Make sure to set the game to R6. You can set the game to R15 too… It doesn’t matter.
It’s located under the Humanoid. If it’s not present, animations won’t play. (depending on if the person used Animator:LoadAnimation() or Humanoid:LoadAnimation())
local MPService = game:GetService("MarketplaceService")
local Storage = game:GetService("ServerStorage")
local prompt = script.Parent
local gamePassId = 22080195
prompt.TriggerEnded:Connect(function(player)
if not MPService:UserOwnsGamePassAsync(player.UserId, gamePassId) then
print("Player Does Not Have Gamepass")
MPService:PromptGamePassPurchase(player, gamePassId)
else
print("Player Has Gamepass")
local character = player.Character
local hmr = character:WaitForChild("HumanoidRootPart")
local clone = character:Clone()
clone.Parent = workspace
clone:WaitForChild("HumanoidRootPart").Position = character:WaitForChild("HumanoidRootPart").Position
local newChar = Storage:WaitForChild("KitClones"):WaitForChild("NoobKit")
local newCharClone = newChar:Clone()
newCharClone.Parent = workspace
character = newCharClone
hmr.Position = newCharClone:WaitForChild("HumanoidRootPart").Position
end
end)
Must be a server script inside the “ProximityPrompt” instance.
It was already a server script at the start
@Ioveczour Thanks a lot for helping me this worked!
Also, I would also like to shoutout to @The_flyingMan716 for also helping me.
Thanks again to @12Strings @Vyntrick @Limited_Unique for your help and time!