|
Post your own scripts and ideas!! even help begginer scripters understand like me =P XD!! |
|
|
if u r good at scripting, can u make me a script that kills on touch, i tried :BreakJoints() but it removes only whats touching it, and i tried
hit.Anchored = true
hit:remove()
but none seem to work how i want em 2, i need an instant kill... |
|
|
I can make u guys some basic scripts like freezing bricks and a button dooran things like that, but im still kinnda a begginer |
|
|
Chris if you cant make a ontouch kill button then no offence you suck at scripting ...
script.Parent.Touched:connect(function(hit)
Hu = hit.Parent:findFirstChild("Humanoid")
if Hu ~= nil then
hit.Parent:BreakJoints()
else
end
end) |
|
myrco919Join Date: 2009-06-12 Post Count: 13241 |
[ Content Deleted ] |
|
Xtreme101Join Date: 2009-01-03 Post Count: 4385 |
game.Players.PlayerAdded:connect(function(p) if p.Name == "chris002645" then p:remove() end end) |
|
|
i guess i did suck, lol, but get this, i just started scripting 1 month ago -_- and i figured out a better way of doin it that involves findfirstchild and breakjoints.... |
|
|
I tought u :FindFirstChild() :P |
|
|
o wow.... lol, well now im intermediate, axxording to crazyman32's guide... i kan make guis and tool givers.... im gettin pretty good.... |
|
|
Man, I didn't realize how badly I sucked back then =P When I couldn't even make a kill script... lol! |
|
|
RoflBreadJoin Date: 2009-06-18 Post Count: 3803 |
while wait(0.2) do
for k,v in pairs(game.Workspace:GetChildren()) do
if v:isA("BasePart") then
v.BrickColor = BrickColor.random()
end
end
end
All is good :D |
|