Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

WHY DOES ROBLOX SAY THIS!?!?!?

Asked by 8 years ago

So i put together an animation script and tried to use it. here is my script:

local RequestAnimationPlay = game.ReplicatedStorage.RequestAnimationPlay

enabled = true

local animation = Instance.new("Animation")
animation.AnimationId = "rbxassetid://305856994"
animation.Parent = script

RequestAnimationPlay.OnServerEvent:connect(function(player)
    animationTrack = player.Character.Humanoid:LoadAnimation(animation)
    animationTrack:Play()
end)

this is linked to a remote event that is fired when player clicks. But in the ouput it constanctly says

17:12:40.186 - httpGet http://www.roblox.com/asset/?id=305856992&serverplaceid=245883628 failed. Trying again. Error: HTTP 403 (HTTP/1.1 403 Asset is not trusted for this place). Elapsed time: 0.102008

17:12:40.306 - Content failed for http://www.roblox.com//asset/?id=305856992&serverplaceid=245883628 because HTTP 403 (HTTP/1.1 403 Asset is not trusted for this place)

17:12:40.307 - Content failed because HTTP 403 (HTTP/1.1 403 Asset is not trusted for this place)

17:12:40.308 - Animation failed to load : Workspace.Script.Animation

Is there a flaw in my code. AND WHY DOES ROBLOX SAY I DONT OWN IT, WHEN I MADE IT

0
Double check the asset id, are you sure its the code at the end of the url? dragonkeeper467 453 — 8y
0
yes im sure i have the right code koolkid8099 705 — 8y
0
100% sure koolkid8099 705 — 8y
0
what happens if instead of using rbxassetid, you use this format: http://www.roblox.com/Asset?ID=305856994 Programmix 285 — 8y
View all comments (2 more)
0
nothing would change because they mean the same thing. 1waffle1 2908 — 8y
0
^^ koolkid8099 705 — 8y

Answer this question