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

Can I Have Some Scripts?! [closed]

Asked by 10 years ago

I Need Some Scripts! All I Know Is...

game.workspace.USERNAME.Head:Destroy()
0
O_O mommmy123456789011 0 — 10y
0
Serious, google "how to script" and you will get literally thousands of results pertaining to ROBLOX. There is no excuse for spamming this site with these useless questions. adark 5487 — 10y
0
CAN I JUST HAVE A ANSER! mommmy123456789011 0 — 10y
0
Reverse engineer. TheeDeathCaster 2368 — 10y

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?

3 answers

Log in to vote
1
Answered by 10 years ago

I cant give you scripts, just here is how to script

Look up youtube videos, here is a channel I reccomend:

PeasFactory

If you are better at learning if you read, you should check out the ROBLOX Wiki:

ROBLOX Wiki

Here is a wiki article to get you started

Scripting Cookbook

Ad
Log in to vote
1
Answered by 10 years ago

Here's a script have fun ;')

print 'Hello world!'
Log in to vote
0
Answered by 10 years ago

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.