I Need Some Scripts! All I Know Is...
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.
gpid = 156616083 -- Gamepass ID tools = {"Sword"} --Sword name GPS = game:GetService("GamePassService") game:GetService("Players").PlayerAdded:connect(function(player) player.CharacterAdded:connect(function(char) if char:FindFirstChild("Humanoid") ~= nil then print("Has humanoid") if GPS:PlayerHasPass(player, gpid) then print("Has pass") for _,v in pairs(tools) do if game:GetService("Lighting"):FindFirstChild(v) then game:GetService("Lighting"):FindFirstChild(v):clone().Parent = player.Backpack end end print("Has tools") else print("Doesn't own pass") end end end) 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?