|
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. |
|
|
Character:MoveTo(Vector3.new(X,Y,Z)) |
|
|
Copy the "Texture" link under properties. |
|
|
Are you copied the "Texture" link or the website link? pasting the website link won't work. |
|
|
|
|
Did you copy and paste the full link by itself?. |
|
|
|
You have to use MouseClick,
script.Parent.ClickDetector.MouseClick:connect(function()
end)
would be an example. |
|
|
Personally, tables, assuming you don't attempt to learn the more advanced concepts of them all at once. |
|
|
Please show us one of the scripts. |
|
|
Try increasing the wait time for the original script. |
|
|
CameraMaximumZoomDistance |
|
|
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. |
|
|
That would depend entirely on the method you're using to script it and your own personal pace. |
|
|
Have you tried using a LocalScript to modify the LocalPlayer's PlayerGui?. |
|
|
Here' an example:
Mouse.TargetFilter = game.Workspace.Part |
|
|
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... |
|
|
Try using something like,
Mouse.TargetFilter = nil |
|
|
Well, this would depend entirely on how you intend to make it move, you could use something such as,
game.Workspace.ModelCar:MoveTo() |
|
|
humanoid.Jumping:connect(function()
agility.Value = agility.Value + 20
end) |
|
|
What's the problem you're getting when you try to use it?. |
|
|
Is it killing the "Character"?. |
|
|
Please show us the script. |
|
|
Have you using the copy of the GUI inside of the LocalPlayer's PlayerGui instead?. |
|