I Need Some Scripts! All I Know Is...
1 | game.workspace.USERNAME.Head:Destroy() |
I cant give you scripts, just here is how to script
Look up youtube videos, here is a channel I reccomend:
If you are better at learning if you read, you should check out the ROBLOX Wiki:
Here is a wiki article to get you started
Here's a script that can help you make money from sword fighting games.
01 | gpid = 156616083 -- Gamepass ID |
02 | tools = { "Sword" } --Sword name |
03 |
04 | GPS = game:GetService( "GamePassService" ) |
05 | game:GetService( "Players" ).PlayerAdded:connect( function (player) |
06 | player.CharacterAdded:connect( function (char) |
07 | if char:FindFirstChild( "Humanoid" ) ~ = nil then |
08 | print ( "Has humanoid" ) |
09 | if GPS:PlayerHasPass(player, gpid) then |
10 | print ( "Has pass" ) |
11 | for _,v in pairs (tools) do |
12 | if game:GetService( "Lighting" ):FindFirstChild(v) then |
13 | game:GetService( "Lighting" ):FindFirstChild(v):clone().Parent = player.Backpack |
14 | end |
15 | end |
Hope this helped.
Closed as Too Broad by AmericanStripes
This question has been closed because it is too broad and is generally unanswerable. Please ask a more specific question.
Why was this question closed?