AnonyAnonymous
#140009749Friday, July 11, 2014 7:17 PM GMT

No, insert the Decal into the game and copy the assetidlink of the decal under properties, then set that link as the TextureId via the script.
AnonyAnonymous
#140009864Friday, July 11, 2014 7:18 PM GMT

Character:MoveTo(Vector3.new(X,Y,Z))
AnonyAnonymous
#140012196Friday, July 11, 2014 7:41 PM GMT

Copy the "Texture" link under properties.
AnonyAnonymous
#140013089Friday, July 11, 2014 7:49 PM GMT

Are you copied the "Texture" link or the website link? pasting the website link won't work.
AnonyAnonymous
#140013500Friday, July 11, 2014 7:53 PM GMT

Paste the link you used.
AnonyAnonymous
#140013901Friday, July 11, 2014 7:57 PM GMT

AnonyAnonymous
#140014484Friday, July 11, 2014 8:03 PM GMT

Did you copy and paste the full link by itself?.
AnonyAnonymous
#140014827Friday, July 11, 2014 8:06 PM GMT

Alright then, http://www.roblox.com/asset/?id=60887107 That might work.
AnonyAnonymous
#140015291Friday, July 11, 2014 8:10 PM GMT

You have to use MouseClick, script.Parent.ClickDetector.MouseClick:connect(function() end) would be an example.
AnonyAnonymous
#140016359Friday, July 11, 2014 8:22 PM GMT

Personally, tables, assuming you don't attempt to learn the more advanced concepts of them all at once.
AnonyAnonymous
#140016572Friday, July 11, 2014 8:24 PM GMT

Please show us one of the scripts.
AnonyAnonymous
#140016752Friday, July 11, 2014 8:26 PM GMT

Try increasing the wait time for the original script.
AnonyAnonymous
#140017328Friday, July 11, 2014 8:32 PM GMT

CameraMaximumZoomDistance
AnonyAnonymous
#140018372Friday, July 11, 2014 8:42 PM GMT

http://wiki.roblox.com/index.php?title=AllTutorials Here you go, the Roblox Wiki is the best resource for roblox related information when it comes to scripting, you'll find guides by different users so I would personally suggest starting with something simple and then experimenting and trying to restructure the things you learn in a "logical" order.
AnonyAnonymous
#140019100Friday, July 11, 2014 8:49 PM GMT

That would depend entirely on the method you're using to script it and your own personal pace.
AnonyAnonymous
#140019492Friday, July 11, 2014 8:53 PM GMT

Have you tried using a LocalScript to modify the LocalPlayer's PlayerGui?.
AnonyAnonymous
#140019797Friday, July 11, 2014 8:56 PM GMT

Here' an example: Mouse.TargetFilter = game.Workspace.Part
AnonyAnonymous
#140020729Friday, July 11, 2014 9:06 PM GMT

function Equation() A = 1 return A + 1 end if Equation() == 2 then print("Correct") end Alright, in this example, I created a brand new function called "Equation", Inside of the function "Equation", I created a brand new "Variable" called "A" which was equal to 1. before I "ended" the function I used return A + 1, in this case, return A + 1 would be equivalent to 1+1 and so the result would be "2", I then used an "if statement" to determine if the value that was "returned" from the function wa...
AnonyAnonymous
#140021628Friday, July 11, 2014 9:16 PM GMT

Try using something like, Mouse.TargetFilter = nil
AnonyAnonymous
#140022085Friday, July 11, 2014 9:22 PM GMT

Well, this would depend entirely on how you intend to make it move, you could use something such as, game.Workspace.ModelCar:MoveTo()
AnonyAnonymous
#140026916Friday, July 11, 2014 10:10 PM GMT

humanoid.Jumping:connect(function() agility.Value = agility.Value + 20 end)
AnonyAnonymous
#140027245Friday, July 11, 2014 10:13 PM GMT

What's the problem you're getting when you try to use it?.
AnonyAnonymous
#140032217Friday, July 11, 2014 11:03 PM GMT

Is it killing the "Character"?.
AnonyAnonymous
#140032918Friday, July 11, 2014 11:11 PM GMT

Please show us the script.
AnonyAnonymous
#140033014Friday, July 11, 2014 11:12 PM GMT

Have you using the copy of the GUI inside of the LocalPlayer's PlayerGui instead?.